Skip to content

Commit 93bb99e

Browse files
committed
Prettier long string breaking.
1 parent 0c3b04f commit 93bb99e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/bench/shootout-mandelbrot.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ static LIMIT: f64 = 2.0;
2121
fn main() {
2222
let args = std::os::args();
2323
let (w, mut out) = if args.len() < 2 {
24-
println("Test mode: do not dump the image because it's not utf8,"
25-
+ " which interferes with the test runner.");
24+
println("Test mode: do not dump the image because it's not utf8, \
25+
which interferes with the test runner.");
2626
(1000, ~DummyWriter as ~Writer)
2727
} else {
2828
(from_str(args[1]).unwrap(),

0 commit comments

Comments
 (0)