Skip to content

Commit

Permalink
fix redundant computation in POD docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mla committed Jul 14, 2016
1 parent 0c4a2d4 commit 3744a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Time/Ago.pm
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ See L<Locale::TextDomain> for how to specify a language.
foreach (qw/ en fr de it ja ru es /) {
setlocale(LC_ALL, '');
$ENV{LANGUAGE} = $_;
print Time::Ago->in_words(86400 * 365 * 10.4), "\n";
print Time::Ago->in_words($secs), "\n";
}
Output:
Expand Down

0 comments on commit 3744a3d

Please sign in to comment.