Change 20627 by [EMAIL PROTECTED] on 2003/08/12 05:17:14
Gotta Get'em Cases Right.
Affected files ...
... //depot/perl/pod/perlreref.pod#7 edit
Differences ...
==== //depot/perl/pod/perlreref.pod#7 (text) ====
Index: perl/pod/perlreref.pod
--- perl/pod/perlreref.pod#6~20626~ Mon Aug 11 22:04:02 2003
+++ perl/pod/perlreref.pod Mon Aug 11 22:17:14 2003
@@ -85,9 +85,9 @@
\N{name} A named character
\l Lowercase next character
- \u Uppercase next character
+ \u Titlecase next character
\L Lowercase until \E
- \U Titlecase until \E
+ \U Uppercase until \E
\Q Disable pattern metacharacters until \E
\E End case modification
@@ -222,8 +222,8 @@
split Use regex to split a string into parts
-The first four of these are identical to the escape sequences \l, \u,
-\L, and \U. For Titlecase, see L</Titlecase>.
+The first four of these are like the escape sequences C<\L>, C<\l>,
+C<\U>, and C<\u>. For Titlecase, see L</Titlecase>.
=head2 Terminology
End of Patch.