Skip to content

Commit 2f484dd

Browse files
committed
Eliminates experimental, closes #2524
1 parent 48072be commit 2f484dd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

doc/Type/Any.pod6

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
77
class Any is Mu {}
88
9-
While L<Mu|/type/Mu> is the root of the Perl 6 class hierarchy, L<Any|/type/Any> is the
10-
class that serves as a default base class for new classes, and as the
9+
While L<Mu|/type/Mu> is the root of the Perl 6 class hierarchy, L<Any|/type/Any>
10+
is the class that serves as a default base class for new classes, and as the
1111
base class for most built-in classes.
1212
13-
Since Perl 6 intentionally confuses items and single-element lists, most
14-
methods in L<Any|/type/Any> are also present on class L<List|/type/List>, and coerce to
13+
Since Perl 6 intentionally confuses items and single-element lists, most methods
14+
in L<Any|/type/Any> are also present on class L<List|/type/List>, and coerce to
1515
List or a list-like type.
1616
1717
=head1 Methods
@@ -1044,7 +1044,6 @@ Latin script generally is for case, and also disable quaternary which breaks
10441044
any ties by checking the codepoint values of the strings, we get B<Same> back
10451045
for B<A> and B<a>:
10461046
1047-
use experimental :collation;
10481047
$*COLLATION.set(:quaternary(False), :tertiary(False));
10491048
say 'a' coll 'A'; #OUTPUT: «Same␤»
10501049
say ('a','A').collate == ('A','a').collate; # OUTPUT: «True␤»
@@ -1072,4 +1071,4 @@ L«C<List.batch>|/type/List#method_batch» on it.
10721071
10731072
=end pod
10741073

1075-
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6
1074+
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

0 commit comments

Comments
 (0)