Fix typo in doc for std.algorithm.mutation.fill

This commit is contained in:
Paul Backus 2022-12-06 13:02:35 -05:00 committed by The Dlang Bot
parent 67155f04e7
commit 792c8b7c1d

View file

@ -573,7 +573,7 @@ $(LINK2 http://en.cppreference.com/w/cpp/algorithm/copy_backward, STL's `copy_ba
Assigns `value` to each element of input range `range`.
Alternatively, instead of using a single `value` to fill the `range`,
a `filter` $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
a `filler` $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
can be provided. The length of `filler` and `range` do not need to match, but
`filler` must not be empty.