summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2013-07-03 01:20:23 +0200
committerJames E Keenan <jkeenan@cpan.org>2013-07-03 03:41:14 +0200
commit1d268002215610157f95bd75662fb0d8fb6ebea3 (patch)
tree77786090d5b63cd919a3a7417893ae825b6c7566
parentda648063d21f624e2ae3c04a9b6d5b4c5b506e56 (diff)
downloadperl-1d268002215610157f95bd75662fb0d8fb6ebea3.tar.gz
Delete superfluous lines; clarify identifier parsing.
Grammar correction suggested by Father Chrysostomos. For RT #118723.
-rw-r--r--pod/perldata.pod9
1 files changed, 2 insertions, 7 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod
index 235177b63a..8f054305d4 100644
--- a/pod/perldata.pod
+++ b/pod/perldata.pod
@@ -141,14 +141,9 @@ quote (C<'>). Normal identifiers can start or end with a double colon, and
can contain several parts delimited by double colons.
Single quotes have similar rules, but with the exception that they are not
legal at the end of an identifier: That is, C<$'foo> and C<$foo'bar> are
-legal, but C<$foo'bar'> are not.
+legal, but C<$foo'bar'> is not.
-
-Finally, if the identifier is preceded by a sigil --
-More so, normal identifiers can start or end with any number
-of double colons (::), and can contain several parts delimited
-by double colons.
-And additionally, if the identifier is preceded by a sigil --
+Additionally, if the identifier is preceded by a sigil --
that is, if the identifier is part of a variable name -- it
may optionally be enclosed in braces.