about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiLsMailSource.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-09-19 12:50:27 +0000
committerEric Wong <e@80x24.org>2021-09-19 19:52:49 +0000
commit0ad53a52ea62e30e2fa722b86b78dd5d57974c18 (patch)
tree82a907824be7d311c50ec41c6f3233d86d4c08f9 /lib/PublicInbox/LeiLsMailSource.pm
parent46001a7685f11cfe2b9263b0eb38478c8e951585 (diff)
downloadpublic-inbox-0ad53a52ea62e30e2fa722b86b78dd5d57974c18.tar.gz
The meanings of "hwm" and "lwm" may not be obvious abbreviations
for (high|low) water mark descriptions used by RFC 3977.
"high" and "low" should be obvious to anyone.
Diffstat (limited to 'lib/PublicInbox/LeiLsMailSource.pm')
-rw-r--r--lib/PublicInbox/LeiLsMailSource.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/LeiLsMailSource.pm b/lib/PublicInbox/LeiLsMailSource.pm
index bcb1838e..a2e75e94 100644
--- a/lib/PublicInbox/LeiLsMailSource.pm
+++ b/lib/PublicInbox/LeiLsMailSource.pm
@@ -59,10 +59,10 @@ sub input_path_url { # overrides LeiInput version
 # <https://rt.cpan.org/Ticket/Display.html?id=129966>
                                 $desc =~ s/\r\z//;
 
-                                my ($hwm, $lwm, $status) = @{$all->{$ng}};
+                                my ($high, $low, $status) = @{$all->{$ng}};
                                 push @x, { name => $ng, url => "$sec/$ng",
-                                        lwm => $lwm + 0,
-                                        hwm => $hwm + 0, status => $status,
+                                        low => $low + 0,
+                                        high => $high + 0, status => $status,
                                         description => $desc };
                         }
                         @f = map { "$sec/$_" } keys %$all;