From e85bf83bd372f90dac9c94d490cb8ccfb5e38c17 Mon Sep 17 00:00:00 2001 From: Andrei Alexandrescu Date: Mon, 29 Dec 2014 17:51:45 -0800 Subject: [PATCH] remove stray paren --- std/algorithm.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/algorithm.d b/std/algorithm.d index 0b7b67816..12afc3cb6 100644 --- a/std/algorithm.d +++ b/std/algorithm.d @@ -1455,7 +1455,7 @@ unittest /** Sums elements of $(D r), which must be a finite $(LINK2 std_range.html#isInputRange, input range). Although conceptually $(D sum(r)) is equivalent to $(LREF reduce)!((a, b) => a + -b)(0, r)), $(D sum) uses specialized algorithms to maximize accuracy, +b)(0, r), $(D sum) uses specialized algorithms to maximize accuracy, as follows. $(UL