about summary refs log tree commit homepage
path: root/lib/PublicInbox/RepoGitBlob.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/RepoGitBlob.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/RepoGitBlob.pm')
-rw-r--r--lib/PublicInbox/RepoGitBlob.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/RepoGitBlob.pm b/lib/PublicInbox/RepoGitBlob.pm
index b535b0ad..84f48c65 100644
--- a/lib/PublicInbox/RepoGitBlob.pm
+++ b/lib/PublicInbox/RepoGitBlob.pm
@@ -56,8 +56,8 @@ sub git_blob_stream_response {
                 my ($res) = @_;
                 my $to_read = 8192;
                 eval {
-                        my $fh = $res->([ 200, ['Content-Length' => $size,
-                                                'Content-Type' => $type]]);
+                        my $fh = $res->([ 200, ['Content-Length', $size,
+                                                'Content-Type', $type]]);
                         $fh->write($buf) if defined $buf;
                         while ($left > 0) {
                                 $to_read = $left if $to_read > $left;