about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Pinot <texitoi@texitoi.eu>2013-11-17 13:09:56 +0100
committerGuillaume Pinot <texitoi@texitoi.eu>2013-11-17 13:09:56 +0100
commit93bb99ea09b056c7b3615e3f71386f408e3aaf3c (patch)
tree763e36cc21bfce3b4c77c642f6e5a013d3df8436
parent0c3b04fa0fc71d319fae14287246126e2e7c84d3 (diff)
downloadrust-93bb99ea09b056c7b3615e3f71386f408e3aaf3c.tar.gz
rust-93bb99ea09b056c7b3615e3f71386f408e3aaf3c.zip
Prettier long string breaking.
-rw-r--r--src/test/bench/shootout-mandelbrot.rs4
1 files 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(),