Skip to content

Commit 4420f31

Browse files
committed
Fix trailing whitespaces
1 parent 99d2552 commit 4420f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/diagnostics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,15 +303,15 @@ number cannot be negative.
303303
E0307: r##"
304304
The length of an array is part of its type. For this reason, this length must be
305305
a compile-time constant.
306-
"##,
306+
"##,
307307

308308
E0308: r##"
309309
This error occurs when the compiler was unable to infer the concrete type of a
310310
variable. This error can occur for several cases, the most common of which is
311311
that there is a mismatch in the expected type that the compiler inferred, and
312312
the actual type that the user defined a variable as.
313313
314-
let a: char = 7; // An integral type can't be contained in a character, so
314+
let a: char = 7; // An integral type can't be contained in a character, so
315315
// there is a mismatch.
316316
317317
let b: u32 = 7; // Either use the right type...

0 commit comments

Comments
 (0)