about summary refs log tree commit homepage
path: root/lib/PublicInbox/Repobrowse.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-02-17 23:40:37 +0000
committerEric Wong <e@80x24.org>2017-02-17 23:41:34 +0000
commit3adb3d824864804a357b68dd33f9c2c973742174 (patch)
treedd403014d2b9248be2f1d44bb957b742f7ef5d72 /lib/PublicInbox/Repobrowse.pm
parent7ca9df837d6b6ac060a9f321fe87900218ef7e88 (diff)
downloadpublic-inbox-3adb3d824864804a357b68dd33f9c2c973742174.tar.gz
Avoid using '=>' arrow notation for arrays and array references,
it is confusing and more verbose.  Additionally, combine
"use constant" statements when possible.
Diffstat (limited to 'lib/PublicInbox/Repobrowse.pm')
-rw-r--r--lib/PublicInbox/Repobrowse.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Repobrowse.pm b/lib/PublicInbox/Repobrowse.pm
index 86778514..6fc060ae 100644
--- a/lib/PublicInbox/Repobrowse.pm
+++ b/lib/PublicInbox/Repobrowse.pm
@@ -73,7 +73,7 @@ sub no_tslash {
         }
         my $url = $base . $uri . $qs;
         [ 301,
-          [ Location => $url, 'Content-Type' => 'text/plain' ],
+          [ 'Location', $url, 'Content-Type', 'text/plain' ],
           [ "Redirecting to $url\n" ] ]
 }