Clarify that \Q, \U, \L don't require \E
authorEric Brine <ikegami@adaelis.com>
Fri, 30 Dec 2011 05:55:40 +0000 (21:55 -0800)
committerAbigail <abigail@abigail.be>
Fri, 30 Dec 2011 14:40:25 +0000 (15:40 +0100)
Signed-off-by: Abigail <abigail@abigail.be>
pod/perlop.pod

index 169c5f1..9313862 100644 (file)
@@ -1225,9 +1225,9 @@ X<\l> X<\u> X<\L> X<\U> X<\E> X<\Q>
 
     \l         lowercase next character only
     \u         titlecase (not uppercase!) next character only
-    \L         lowercase all characters till \E seen
-    \U         uppercase all characters till \E seen
-    \Q         quote non-word characters till \E
+    \L         lowercase all characters till \E or end of string
+    \U         uppercase all characters till \E or end of string
+    \Q         quote non-word characters till \E or end of string
     \E         end either case modification or quoted section
                (whichever was last seen)