Author: particle
Date: 2009-02-07 18:52:56 +0100 (Sat, 07 Feb 2009)
New Revision: 25232
Modified:
docs/Perl6/Spec/S19-commandline.pod
Log:
[S19] remove some P5-think, comb is the new hotness
Modified: docs/Perl6/Spec/S19-commandline.pod
===================================================================
--- docs/Perl6/Spec/S19-commandline.pod 2009-02-07 17:07:14 UTC (rev 25231)
+++ docs/Perl6/Spec/S19-commandline.pod 2009-02-07 17:52:56 UTC (rev 25232)
@@ -369,7 +369,7 @@
=head2 Synopsis
multi sub perl6(
- Bool :a($autoloop-split),
+ Bool :a($autoloop-comb),
Bool :c($check-syntax),
Bool :$doc,
:e($execute),
@@ -392,13 +392,13 @@
=over 4
-=item --autoloop-split, -a
+=item --autoloop-comb, -a
-When used with C<-n> or C<-p>, implicitly splits input on whitespace
-(by default) and assigns the result to C<@_> within the loop produced
-by the C<-n> or C<-p>.
+When used with C<-n> or C<-p>, implicitly combs input and assigns the
+result to C<@_> within the loop produced by the C<-n> or C<-p>.
-An alternate delimiter may be specified with C<--autoloop-delim>, a.k.a. C<-F>.
+An alternate pattern for comb may be specified with C<--autoloop-delim>,
+a.k.a. C<-F>.
=item ++CMD --command-line-parser *parser* ++/CMD