Author: jani
Date: 2009-08-13 14:19:25 +0200 (Thu, 13 Aug 2009)
New Revision: 27978

Modified:
   docs/Perl6/Spec/S32-setting-library/Containers.pod
Log:
S32/Containers iterator rephrase (similar to S09 hash keys spec)

Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-08-13 11:45:42 UTC 
(rev 27977)
+++ docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-08-13 12:19:25 UTC 
(rev 27978)
@@ -635,9 +635,9 @@
  multi method pairs  ( %hash: Matcher $keytest? ) is export
  multi method values ( %hash: Matcher $keytest? ) is export
 
-Iterates the elements of C<%hash> in no apparent order, but the order
-will be the same between successive calls to these functions, as long as
-C<%hash> doesn't change.
+Iterates the elements of C<%hash>. The order is implementation dependent
+and arbitrary, but will be the same between successive calls to these
+functions, as long as C<%hash> doesn't change.
 
 If C<$keytest> is provided, only elements whose keys evaluate
 C<$key ~~ $keytest> as true are iterated.

Reply via email to