summaryrefslogtreecommitdiff
path: root/pod/perlre.pod
diff options
context:
space:
mode:
authorAlexandr Savca <alexandr.savca89@gmail.com>2018-04-18 16:28:00 -0400
committerJames E Keenan <jkeenan@cpan.org>2018-04-19 09:20:37 -0400
commitdabde021f60e09a0d267e2c1d21905e88314056d (patch)
treecba2215a54b03e0210e5793a98743dd47d129844 /pod/perlre.pod
parenta3bda1a78f16ffb09616f48f73bb73558cbfd96c (diff)
downloadperl-dabde021f60e09a0d267e2c1d21905e88314056d.tar.gz
Spelling corrections in pod/*.pod from Alexandr Savca.
Alexandr Savca is now a Perl AUTHOR. For: RT #133120 Committer: holding off on the corrections to pod/perlartistic.pod until clarification of change to license text.
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 0c6ef15e9d..70c53f1536 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -192,7 +192,7 @@ want in the set. You do this by enclosing the list within C<[]> bracket
characters. These are called "bracketed character classes" when we are
being precise, but often the word "bracketed" is dropped. (Dropping it
usually doesn't cause confusion.) This means that the C<"["> character
-is another metacharacter. It doesn't match anything just by itelf; it
+is another metacharacter. It doesn't match anything just by itself; it
is used only to tell Perl that what follows it is a bracketed character
class. If you want to match a literal left square bracket, you must
escape it, like C<"\[">. The matching C<"]"> is also a metacharacter;