From 93bb99ea09b056c7b3615e3f71386f408e3aaf3c Mon Sep 17 00:00:00 2001 From: Guillaume Pinot Date: Sun, 17 Nov 2013 13:09:56 +0100 Subject: [PATCH] Prettier long string breaking. --- src/test/bench/shootout-mandelbrot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/bench/shootout-mandelbrot.rs b/src/test/bench/shootout-mandelbrot.rs index a08dfb29d3e..fa63d1067ae 100644 --- a/src/test/bench/shootout-mandelbrot.rs +++ b/src/test/bench/shootout-mandelbrot.rs @@ -21,8 +21,8 @@ static LIMIT: f64 = 2.0; fn main() { let args = std::os::args(); let (w, mut out) = if args.len() < 2 { - println("Test mode: do not dump the image because it's not utf8," - + " which interferes with the test runner."); + println("Test mode: do not dump the image because it's not utf8, \ + which interferes with the test runner."); (1000, ~DummyWriter as ~Writer) } else { (from_str(args[1]).unwrap(),