This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Delete superfluous lines; clarify identifier parsing.
authorJames E Keenan <jkeenan@cpan.org>
Tue, 2 Jul 2013 23:20:23 +0000 (01:20 +0200)
committerJames E Keenan <jkeenan@cpan.org>
Wed, 3 Jul 2013 01:41:14 +0000 (03:41 +0200)
Grammar correction suggested by Father Chrysostomos.
For RT #118723.

pod/perldata.pod

index 235177b..8f05430 100644 (file)
@@ -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.