Skip to content

Commit 1e6b121

Browse files
authored
Supply #3841
min max minmax all routines not methods
1 parent 52b24d5 commit 1e6b121

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Supply.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ Creates a supply that only emits values from the given supply if they are
775775
larger than any value seen before. In other words, from a continuously
776776
ascending supply it will emit all the values. From a continuously descending
777777
supply it will only emit the first value. The optional parameter specifies
778-
the comparator, just as with L<Any.max|/type/Any#method_max>.
778+
the comparator, just as with L<Any.max|/type/Any#routine_max>.
779779
780780
=head2 method min
781781
@@ -785,15 +785,15 @@ Creates a supply that only emits values from the given supply if they are
785785
smaller than any value seen before. In other words, from a continuously
786786
descending supply it will emit all the values. From a continuously ascending
787787
supply it will only emit the first value. The optional parameter specifies
788-
the comparator, just as with L<Any.min|/type/Any#method_min>.
788+
the comparator, just as with L<Any.min|/type/Any#routine_min>.
789789
790790
=head2 method minmax
791791
792792
method minmax(Supply:D: &custom-routine-to-use = &infix:<cmp> --> Supply:D)
793793
794794
Creates a supply that emits a Range every time a new minimum or maximum
795795
values is seen from the given supply. The optional parameter specifies
796-
the comparator, just as with L<Any.minmax|/type/Any#method_minmax>.
796+
the comparator, just as with L<Any.minmax|/type/Any#routine_minmax>.
797797
798798
=head2 method skip
799799

0 commit comments

Comments
 (0)