File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -303,15 +303,15 @@ number cannot be negative.
303
303
E0307 : r##"
304
304
The length of an array is part of its type. For this reason, this length must be
305
305
a compile-time constant.
306
- "## ,
306
+ "## ,
307
307
308
308
E0308 : r##"
309
309
This error occurs when the compiler was unable to infer the concrete type of a
310
310
variable. This error can occur for several cases, the most common of which is
311
311
that there is a mismatch in the expected type that the compiler inferred, and
312
312
the actual type that the user defined a variable as.
313
313
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
315
315
// there is a mismatch.
316
316
317
317
let b: u32 = 7; // Either use the right type...
You can’t perform that action at this time.
0 commit comments