]> Sergey Matveev's repositories - public-inbox.git/commitdiff
wwwstream: wording/grammar tweaks in trailer
authorEric Wong <e@80x24.org>
Sat, 2 Jul 2016 22:57:29 +0000 (22:57 +0000)
committerEric Wong <e@80x24.org>
Sat, 2 Jul 2016 22:57:40 +0000 (22:57 +0000)
git.git documentation uses "clonable" so that's probably
a better term than "clone-able".  Also, shorten the section
for retrieving our code and remove an obvious typo.

lib/PublicInbox/WwwStream.pm

index be6ce2e6bc9f2b8efb60314662c97714710e0362..285416d5df75b8f5c42a4cb9d79257fd71149578 100644 (file)
@@ -57,7 +57,7 @@ sub _html_top ($) {
 
 sub _html_end {
        my ($self) = @_;
-       my $urls = 'Archives are clone-able:';
+       my $urls = 'Archives are clonable:';
        my $ctx = $self->{ctx};
        my $obj = $ctx->{-inbox};
        my $desc = ascii_html($obj->description);
@@ -81,8 +81,8 @@ sub _html_end {
        '<pre>'.join("\n",
                '- ' . $desc,
                $urls,
-               'Archived served using code from public-inbox:',
-               qq(\tgit clone <a\nhref="$url">$url</a> public-inbox),
+               'Served with public-inbox: '.
+               qq(git clone <a\nhref="$url">$url</a> public-inbox),
        ).'</pre></body></html>';
 }