Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct the slurpies in documented signatures
  • Loading branch information
skids committed Oct 2, 2015
1 parent 81278cc commit 9b0f023
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Type/Array.pod
Expand Up @@ -31,8 +31,8 @@ Example:
=head2 routine push
multi sub push(Array:D, *@values) returns Array:D
multi method push(Array:D: *@values) returns Array:D
multi sub push(Array:D, **@values) returns Array:D
multi method push(Array:D: **@values) returns Array:D
Adds the C<@values> to the end of the array, and returns the modified list.
Fails for infinite arrays.
Expand All @@ -59,8 +59,8 @@ Example:
=head2 routine unshift
multi sub unshift(Array:D, *@values) returns Array:D
multi method unshift(Array:D: *@values) returns Array:D
multi sub unshift(Array:D, **@values) returns Array:D
multi method unshift(Array:D: **@values) returns Array:D
Adds the C<@values> to the start of the array, and returns the modified array.
Fails if C<@values> is infinite.
Expand Down

0 comments on commit 9b0f023

Please sign in to comment.