Skip to content

Commit

Permalink
Remove prototypes from documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dumarchie authored and JJ committed Nov 22, 2020
1 parent 1c4c041 commit 138ffa8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions doc/Type/Any.pod6
Expand Up @@ -115,7 +115,6 @@ scalar in a list context by calling C<.list> and turning it into an C<Array>.
Defined as:
proto method push(|) is nodal
multi method push(Any:U \SELF: |values --> Positional:D)
The method push is defined for undefined invocants and allows for autovivifying
Expand Down Expand Up @@ -1394,7 +1393,6 @@ be either C<((Any))> or the empty List.
Defined as:
proto method append(|) is nodal
multi method append(Any:U \SELF: |values)
In the case the instance is not a positional-thing, it instantiates it as a new
Expand Down
4 changes: 0 additions & 4 deletions doc/Type/independent-routines.pod6
Expand Up @@ -1172,7 +1172,6 @@ Routines that manipulate arrays and other containers.
Defined as:
proto sub pop($, *%)
multi sub pop(@a)
Calls method L<C<pop>|/routine/pop> on the container, which is supposed to
Expand All @@ -1182,7 +1181,6 @@ remove and return the last element, or fail if the container is empty.
Defined as:
proto sub shift($, *%)
multi sub shift(@a)
Calls method L<C<shift>|/routine/shift> on the container which is supposed to
Expand All @@ -1192,7 +1190,6 @@ remove and return the first element, or fail if the container is empty.
Defined as:
proto sub push($, |)
multi sub push(\a, \b)
multi sub push(\a, **@b)
Expand All @@ -1209,7 +1206,6 @@ L<C<b.iterator>|/routine/iterator>.
Defined as:
proto sub append($, |)
multi sub append(\a, \b)
multi sub append(\a, **@b)
Expand Down

0 comments on commit 138ffa8

Please sign in to comment.