summaryrefslogtreecommitdiff
path: root/pod/perlrebackslash.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-10-27 13:36:45 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-10-27 13:36:45 -0700
commit040ac26489d0fa56b9bc1e898067e86d17ad5255 (patch)
treefdb7f19689d9857df4fc12729d2d4767f4671cf2 /pod/perlrebackslash.pod
parenta598d0e5600aab09653dd1028e8110935034eb34 (diff)
downloadperl-040ac26489d0fa56b9bc1e898067e86d17ad5255.tar.gz
perlrebackslash: too grammer tweaks
Diffstat (limited to 'pod/perlrebackslash.pod')
-rw-r--r--pod/perlrebackslash.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod
index 1a64849e21..df646d5465 100644
--- a/pod/perlrebackslash.pod
+++ b/pod/perlrebackslash.pod
@@ -604,8 +604,8 @@ C<\v> (vertical whitespace), and the multi character sequence C<"\x0D\x0A">
(carriage return followed by a line feed, sometimes called the network
newline; it's the end of line sequence used in Microsoft text files opened
in binary mode). C<\R> is equivalent to C<< (?>\x0D\x0A|\v) >>. (The
-reason it doesn't backtrack is because the sequence is considered
-inseperable. That means that
+reason it doesn't backtrack is that the sequence is considered
+inseparable. That means that
"\x0D\x0A" =~ /^\R\x0A$/ # No match