Author: vamped
Date: 2010-03-29 06:30:14 +0200 (Mon, 29 Mar 2010)
New Revision: 30235

Modified:
   docs/Perl6/Spec/S32-setting-library/Str.pod
Log:
Perl 5 thinko - changed  to bash for first regex match

Modified: docs/Perl6/Spec/S32-setting-library/Str.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Str.pod 2010-03-29 01:14:28 UTC (rev 
30234)
+++ docs/Perl6/Spec/S32-setting-library/Str.pod 2010-03-29 04:30:14 UTC (rev 
30235)
@@ -198,7 +198,7 @@
  our Str multi method capitalize ( Str $string: ) is export
 
 Has the effect of first doing an C<lc> on the entire string, then performing a
-C<s:g/(\w+)/{ucfirst $1}/> on it.
+C<s:g/(\w+)/{ucfirst $0}/> on it.
 
 
 =item length

Reply via email to