We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 177337d commit 426b63fCopy full SHA for 426b63f
src/librustc_errors/emitter.rs
@@ -1047,7 +1047,7 @@ impl EmitterWriter {
1047
}
1048
} else {
1049
buffer.prepend(0,
1050
- &format!("{}:{}:{} - ",
+ &format!("{}:{}:{}: ",
1051
loc.file.name,
1052
cm.doctest_offset_line(loc.line),
1053
loc.col.0 + 1),
src/test/ui/short-error-format.stderr
@@ -1,3 +1,3 @@
1
-$DIR/short-error-format.rs:16:9 - error[E0308]: mismatched types
2
-$DIR/short-error-format.rs:18:7 - error[E0599]: no method named `salut` found for type `u32` in the current scope
+$DIR/short-error-format.rs:16:9: error[E0308]: mismatched types
+$DIR/short-error-format.rs:18:7: error[E0599]: no method named `salut` found for type `u32` in the current scope
3
error: aborting due to 2 previous errors
0 commit comments