1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
From 456dfa7a2784d89f589968838c21472974c2a491 Mon Sep 17 00:00:00 2001
From: Manoj Srivastava <srivasta@golden-gryphon.com>
Date: Sun, 28 Apr 2013 02:48:57 -0700
Subject: [PATCH] [topic--man-fix]: spelling errors in man pages
seperately separately
explicitely explicitly
noticable noticeable
enviroment environment
Signed-off-by: Manoj Srivastava <srivasta@golden-gryphon.com>
(cherry picked from commit ca33ddc478e32e645ad8fce4760a6d8fbfd8cda1)
---
Changes | 4 ++--
lib/Log/Log4perl/Appender/Limit.pm | 2 +-
t/026FileApp.t | 2 +-
t/028Additivity.t | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Changes b/Changes
index 1c14865..e7828b3 100644
--- a/Changes
+++ b/Changes
@@ -798,7 +798,7 @@
still be called __ANON__, but this can be overridden by
defining
local *__ANON__ = "subroutine_name";
- in them explicitely (thanks, Perlmonks :).
+ in them explicitly (thanks, Perlmonks :).
0.41 (12/12/2003)
* (ms) Applied documentation update for Synchronized appender, suggested
@@ -857,7 +857,7 @@
* (ms) Matthew Keene <mkeene@netspace.net.au> suggested to have
an accessor for all appenders currently defined -- added
appenders() method
- * (ms) Test case 041SafeEval.t didn't share $0 explicitely and
+ * (ms) Test case 041SafeEval.t didn't share $0 explicitly and
created some warnings, fixed that with (jf)'s help.
* (ms) Added performance improvements suggested by
Kyle R. Burton <mortis@voicenet.com>. is_debug/is_info/etc.
diff --git a/lib/Log/Log4perl/Appender/Limit.pm b/lib/Log/Log4perl/Appender/Limit.pm
index 8c55907..2f5c8a6 100644
--- a/lib/Log/Log4perl/Appender/Limit.pm
+++ b/lib/Log/Log4perl/Appender/Limit.pm
@@ -221,7 +221,7 @@ __END__
WARN("This message will be sent immediately.");
WARN("This message will be delayed by one hour.");
sleep(3601);
- WARN("This message plus the last one will be sent now, seperately.");
+ WARN("This message plus the last one will be sent now, separately.");
=head1 DESCRIPTION
diff --git a/t/026FileApp.t b/t/026FileApp.t
index 7ec794b..4ba179d 100644
--- a/t/026FileApp.t
+++ b/t/026FileApp.t
@@ -72,7 +72,7 @@ close FILE;
####################################################
# Append to a log file without specifying append mode
-# explicitely
+# explicitly
####################################################
my $data = <<EOT;
log4j.category = INFO, FileAppndr
diff --git a/t/028Additivity.t b/t/028Additivity.t
index 118d09a..7dbbff1 100644
--- a/t/028Additivity.t
+++ b/t/028Additivity.t
@@ -72,7 +72,7 @@ ok($buf2, "INFO - Percolate this!\n");
Log::Log4perl::Appender::TestBuffer->reset();
######################################################################
-# Define the root logger and another logger, additivity on explicitely
+# Define the root logger and another logger, additivity on explicitly
######################################################################
Log::Log4perl->init(\<<'EOT');
log4perl.logger = INFO, A1
|