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
|
Description: fix a number of POD and spelling errors
Author: Florian Schlichting <fsfs@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=118905
--- a/ApacheFormat.pm
+++ b/ApacheFormat.pm
@@ -91,6 +91,8 @@
=head1 METHODS
+=over 4
+
=item $config = Config::ApacheFormat->new(opt => "value")
This method creates an object that can then be used to read configuration
@@ -104,7 +106,7 @@
Set this to 0 to turn off the inheritance feature. Block inheritance
means that variables declared outside a block are available from
-inside the block unless overriden. Defaults to 1.
+inside the block unless overridden. Defaults to 1.
=item include_support
@@ -206,7 +208,7 @@
If you provide an array of directive names then syntax errors will be
generated during parsing for invalid directives. Otherwise, any
-directive name will be accepted. For exmaple, to only allow
+directive name will be accepted. For example, to only allow
directives called "Bar" and "Bif":
$config = Config::ApacheFormat->new(
@@ -217,7 +219,7 @@
If you provide an array of block names then syntax errors will be
generated during parsing for invalid blocks. Otherwise, any block
-name will be accepted. For exmaple, to only allow "Directory" and
+name will be accepted. For example, to only allow "Directory" and
"Location" blocks in your config file:
$config = Config::ApacheFormat->new(
@@ -306,8 +308,6 @@
$config->inheritance_support(0);
$config->include_support(1);
-=over 4
-
=cut
use File::Spec;
@@ -1065,6 +1065,8 @@
=head1 AUTHORS
+=over
+
=item Sam Tregar <sam@tregar.com>
Original author and maintainer
@@ -1073,6 +1075,8 @@
Porting of features from L<Apache::ConfigFile|Apache::ConfigFile>
+=back
+
=head1 SEE ALSO
L<Apache::ConfigFile|Apache::ConfigFile>
|