diff --git a/std/algorithm/searching.d b/std/algorithm/searching.d index 1aceda40d60..f5c77c14a4b 100644 --- a/std/algorithm/searching.d +++ b/std/algorithm/searching.d @@ -3862,7 +3862,7 @@ if (isInputRange!Range && !isInfinite!Range && } /** Returns an array of the minimum and maximum element in `r`. - * Makes `< 3n/2` comparisons. + * Performs `< 3n/2` comparisons, unlike the naive `< 2n`. */ // TODO alias map = a => a ElementType!Range[2] extrema(Range)(Range r) @@ -3915,7 +3915,7 @@ unittest assert(extrema([2,3,3,2]) == [2, 3]); version (StdRandomTests) - foreach (i; 0..1000) + foreach (i; 0 .. 1000) { import std.random, std.range; auto arr = generate!(() => uniform(0, 100)).takeExactly(uniform(1, 10)).array;