diff options
Diffstat (limited to 'libphobos/src/std/algorithm/mutation.d')
-rw-r--r-- | libphobos/src/std/algorithm/mutation.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libphobos/src/std/algorithm/mutation.d b/libphobos/src/std/algorithm/mutation.d index 839183d..9b1d920 100644 --- a/libphobos/src/std/algorithm/mutation.d +++ b/libphobos/src/std/algorithm/mutation.d @@ -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. |