Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Try and work around problem in docs to get it building again
Chang routine's to methods.
  • Loading branch information
samcv committed Dec 12, 2016
1 parent 112ad2e commit 5bffa57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/Type/Cool.pod6
Expand Up @@ -858,7 +858,7 @@ C<$pattern> is applied to the remaining characters of C<$string>.
say "perL 6".samecase("A__a__"); # Perl 6
say "pERL 6".samecase("Ab"); # Perl 6
=head2 routine uniprop
=head2 method uniprop
Defined as:
sub uniprop(Str(Cool), |c)
Expand All @@ -877,7 +877,7 @@ Returns a Bool for Boolean properties.
say 'a'.uniprop('Alphabetic'); # True
say '1'.uniprop('Alphabetic'); # False
=head2 routine uniprops
=head2 method uniprops
Defined as:
sub uniprops(Str:D $str, Stringy:D $propname = "General_Category")
Expand All @@ -889,7 +889,7 @@ L<General Category|https://en.wikipedia.org/wiki/Unicode_character_property#Gene
Returns a Bool for Boolean properties. Similar to L<uniprop|/routine/uniprop>
=head2 routine uniname
=head2 method uniname
Defined as:
Expand All @@ -910,7 +910,7 @@ L<uninames|#routine_uninames> for a routine that works with multiple codepoints.
say (0..0x1FFFF).sort(*.uniname.chars)[*-1].chr.uniname;
# «ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA INITIAL FORM␤»
=head2 routine uninames
=head2 method uninames
Defined as:
Expand Down

0 comments on commit 5bffa57

Please sign in to comment.