Codebase list liblog-log4perl-perl / a48612a
Add more fixes to 0002-More-spelling-fixes-in-the-POD.patch. gregor herrmann 3 years ago
1 changed file(s) with 35 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 Subject: [PATCH] More spelling fixes in the POD.
1 Origin: vendor
2 Forwarded: no
03 From: gregor herrmann <gregoa@debian.org>
1 Date: Fri, 29 Apr 2016 17:53:54 +0200
2 Subject: [PATCH] More spelling fixes in the POD.
4 Last-Update: 2020-07-22
35
46 --- a/lib/Log/Log4perl.pm
57 +++ b/lib/Log/Log4perl.pm
4345 class hierarchies (Foo::Baz::Bar -> Bar)
4446 %c{2} Just show the two right most category components
4547 (Foo::Baz::Bar -> Baz::Bar)
48 --- a/lib/Log/Log4perl/DateFormat.pm
49 +++ b/lib/Log/Log4perl/DateFormat.pm
50 @@ -454,7 +454,7 @@ month names, internationalization suppor
51 More granular timestamps down to the millisecond are also supported,
52 just provide the millsecond count as a second argument:
53
54 - # Advanced time, resultion in milliseconds
55 + # Advanced time, resoluion in milliseconds
56 use Time::HiRes;
57 my ($secs, $msecs) = Time::HiRes::gettimeofday();
58 print $format->format($secs, $msecs), "\n";
59 --- a/lib/Log/Log4perl/FAQ.pm
60 +++ b/lib/Log/Log4perl/FAQ.pm
61 @@ -1860,7 +1860,7 @@ methods to control indentation of messag
62
63 my $appender = Log::Log4perl->appender_by_name("Indented");
64
65 - DEBUG "No identation";
66 + DEBUG "No indentation";
67 $appender->indent_more();
68 DEBUG "One more";
69 $appender->indent_more();
70 @@ -1870,7 +1870,7 @@ methods to control indentation of messag
71
72 As you would expect, this will print
73
74 - DEBUG - No identation
75 + DEBUG - No indentation
76 DEBUG - One more
77 DEBUG - Two more
78 DEBUG - One less