summaryrefslogtreecommitdiff
path: root/pod/perlrecharclass.pod
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2015-02-14 09:20:42 -0500
committerJames E Keenan <jkeenan@cpan.org>2015-02-14 09:20:42 -0500
commit52f4d632547391b1db71d16e631dd023dcd6a9b0 (patch)
tree55ca66ccc920e2f1e2abc9d9400e9876d802ab26 /pod/perlrecharclass.pod
parent0ce5e53e761c7bd663b2e4d40e226a45b2d3911f (diff)
downloadperl-52f4d632547391b1db71d16e631dd023dcd6a9b0.tar.gz
Correct typo in code example.
Reported by saint.snit++ For: RT #123820
Diffstat (limited to 'pod/perlrecharclass.pod')
-rw-r--r--pod/perlrecharclass.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod
index 1dec87885f..e7d8248566 100644
--- a/pod/perlrecharclass.pod
+++ b/pod/perlrecharclass.pod
@@ -571,7 +571,7 @@ Examples:
"]" =~ /[][]/ # Match, as the character class contains.
# both [ and ].
"[]" =~ /[[]]/ # Match, the pattern contains a character class
- # containing just ], and the character class is
+ # containing just [, and the character class is
# followed by a ].
=head3 Character Ranges