diff options
Diffstat (limited to 'libphobos/src/std/algorithm')
-rw-r--r-- | libphobos/src/std/algorithm/mutation.d | 2 | ||||
-rw-r--r-- | libphobos/src/std/algorithm/sorting.d | 2 |
2 files changed, 2 insertions, 2 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. diff --git a/libphobos/src/std/algorithm/sorting.d b/libphobos/src/std/algorithm/sorting.d index 4fc7ee9..ddb80b8 100644 --- a/libphobos/src/std/algorithm/sorting.d +++ b/libphobos/src/std/algorithm/sorting.d @@ -3946,7 +3946,7 @@ if (isRandomAccessRange!(Range1) && hasLength!Range1 && { foreach (T2; ReferenceRanges) { - import std.array; + import std.array : array; T1 A; T2 B; |