Author: colomon
Date: 2010-04-27 18:38:35 +0200 (Tue, 27 Apr 2010)
New Revision: 30484
Modified:
docs/Perl6/Spec/S03-operators.pod
Log:
[Spec] Range.minmax is now Range.bounds.
Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod 2010-04-27 16:36:16 UTC (rev 30483)
+++ docs/Perl6/Spec/S03-operators.pod 2010-04-27 16:38:35 UTC (rev 30484)
@@ -16,7 +16,7 @@
Created: 8 Mar 2004
Last Modified: 27 Apr 2010
- Version: 201
+ Version: 202
=head1 Overview
@@ -3317,7 +3317,7 @@
routine can usually auto-generate the range for you.
Range objects support C<.min> and C<.max> methods representing
-their left and right arguments. The C<.minmax> method returns both
+their left and right arguments. The C<.bound> method returns both
values as a two-element list representing the interval. Ranges are
not autoreversing: C<2..1> is always a null range. (The series
operator C<...> can autoreverse, however. See below.)