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
|
Description: fix typos caught by lintian
Author: Étienne Mollier <emollier@debian.org>
Forwarded: no
Last-Update: 2022-05-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: liblogger-syslog-perl/lib/Logger/Syslog.pm
===================================================================
--- liblogger-syslog-perl.orig/lib/Logger/Syslog.pm
+++ liblogger-syslog-perl/lib/Logger/Syslog.pm
@@ -24,7 +24,7 @@ warning, error, notice, critic, alert.
=head1 NOTES
Logger::Syslog is compliant with mod_perl, all you have to do when using it
-in such an environement is to call logger_init() at the beginning of your CGI,
+in such an environment is to call logger_init() at the beginning of your CGI,
that will garantee that everything will run smoothly (otherwise, issues with
the syslog socket can happen in mod_perl env).
@@ -74,11 +74,11 @@ our $basename = basename($fullname);
=head2 logger_init
-Call this to explicitly open a Syslog socket. You can optionaly specify
+Call this to explicitly open a Syslog socket. You can optionally specify
a Syslog facility.
That function is called when you use the module, if you're not in a mod_perl
-environement.
+environment.
Examples:
|