about summary refs log tree commit homepage
path: root/examples
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-01-12 21:32:33 +0000
committerEric Wong <e@80x24.org>2016-04-05 18:58:27 +0000
commit1e7a2bbd2c7b0c1d5f989c0e225d22276055eff1 (patch)
tree38673ce828a8e35b2776415c9ff633b8b7964f1e /examples
parent6cc4db944fa85f97734ed93763dd745e8938b8e6 (diff)
downloadpublic-inbox-1e7a2bbd2c7b0c1d5f989c0e225d22276055eff1.tar.gz
We mainly call it "repobrowse" (all lowercase), so do not imply
it is two separate words by capitalizing "Browse".
Diffstat (limited to 'examples')
-rw-r--r--examples/repobrowse.psgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/repobrowse.psgi b/examples/repobrowse.psgi
index d7c096f8..a642911f 100644
--- a/examples/repobrowse.psgi
+++ b/examples/repobrowse.psgi
@@ -5,11 +5,11 @@
 # Usage: plackup [OPTIONS] /path/to/this/file
 use strict;
 use warnings;
-use PublicInbox::RepoBrowse;
+use PublicInbox::Repobrowse;
 use Plack::Request;
 use Plack::Builder;
 my $have_deflater = eval { require Plack::Middleware::Deflater; 1 };
-my $repo_browse = PublicInbox::RepoBrowse->new;
+my $repo_browse = PublicInbox::Repobrowse->new;
 
 builder {
         enable 'Plack::Middleware::Chunked';