From 7d5d9fb1c0a28ecd5d87779b41497ee403f985c8 Mon Sep 17 00:00:00 2001 From: jmdavis Date: Tue, 9 Oct 2012 22:09:58 -0700 Subject: [PATCH] Some whitespace cleanup. --- std/algorithm.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/std/algorithm.d b/std/algorithm.d index f1adbb7a9e1..a284882b383 100644 --- a/std/algorithm.d +++ b/std/algorithm.d @@ -920,7 +920,7 @@ unittest InputRange range; fill(range, filler); foreach (value; range.arr) - assert(value == filler); + assert(value == filler); } unittest { @@ -947,12 +947,12 @@ unittest { int[] a = [1, 2, 3]; immutable(int) b = 0; - static assert(__traits(compiles, a.fill(b))); + static assert(__traits(compiles, a.fill(b))); } { double[] a = [1, 2, 3]; immutable(int) b = 0; - static assert(__traits(compiles, a.fill(b))); + static assert(__traits(compiles, a.fill(b))); } }