summaryrefslogtreecommitdiff
path: root/pod/perlre.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-04-24 06:11:56 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-04-24 06:11:56 +0000
commit4375e838ae24b385ae79fa7b6918e613bedaaee6 (patch)
tree9418d63a58345f7e8f9e1ff644fa85c022b18650 /pod/perlre.pod
parent94a371ee7128c99a38226de46cbec028ae3a990e (diff)
downloadperl-4375e838ae24b385ae79fa7b6918e613bedaaee6.tar.gz
various pod nits (from Larry Virden and others)
p4raw-id: //depot/perl@5917
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r--pod/perlre.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index e1f30a324a..2db4139c30 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -673,7 +673,7 @@ The "grab all you can, and do not give anything back" semantic is desirable
in many situations where on the first sight a simple C<()*> looks like
the correct solution. Suppose we parse text with comments being delimited
by C<#> followed by some optional (horizontal) whitespace. Contrary to
-its appearence, C<#[ \t]*> I<is not> the correct subexpression to match
+its appearance, C<#[ \t]*> I<is not> the correct subexpression to match
the comment delimiter, because it may "give up" some whitespace if
the remainder of the pattern can be made to match that way. The correct
answer is either one of these: