Author: masak
Date: 2010-07-08 00:19:08 +0200 (Thu, 08 Jul 2010)
New Revision: 31570

Modified:
   docs/Perl6/Spec/S32-setting-library/Str.pod
Log:
[S32/Str] saved a few words and lines with "is export"

Modified: docs/Perl6/Spec/S32-setting-library/Str.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Str.pod 2010-07-07 22:13:41 UTC (rev 
31569)
+++ docs/Perl6/Spec/S32-setting-library/Str.pod 2010-07-07 22:19:08 UTC (rev 
31570)
@@ -404,16 +404,14 @@
 
 =item lines
 
- our List multi lines ( Str $input, Int $limit = * )
- our List multi method lines ( Str $input: Int $limit = * )
+ our List multi method lines ( Str $input: Int $limit = * ) is export
 
 Returns a list of lines, i.e. the same as a call to
 C<$input.comb( / \N*\n | \N+$ /, $limit )> would.
 
 =item words
 
- our List multi words ( Str $input, Int $limit = * )
- our List multi method words ( Str $input: Int $limit = * )
+ our List multi method words ( Str $input: Int $limit = * ) is export
 
 Returns a list of non-whitespace bits, i.e. the same as a call to
 C<$input.comb( / \S+ /, $limit )> would.

Reply via email to