We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c3b04f commit 93bb99eCopy full SHA for 93bb99e
src/test/bench/shootout-mandelbrot.rs
@@ -21,8 +21,8 @@ static LIMIT: f64 = 2.0;
21
fn main() {
22
let args = std::os::args();
23
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.");
+ println("Test mode: do not dump the image because it's not utf8, \
+ which interferes with the test runner.");
26
(1000, ~DummyWriter as ~Writer)
27
} else {
28
(from_str(args[1]).unwrap(),
0 commit comments