File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ some of which include:
99* ` eprint! ` : same as ` format! ` but the text is printed to the standard error (io::stderr).
1010* ` eprintln! ` : same as ` eprint! ` but a newline is appended.
1111
12- All parse text in the same fashion. As a plus, Rust checks formatting
12+ All parse text in the same fashion. As a plus, Rust checks formatting
1313correctness at compile time.
1414
1515``` rust,editable,ignore,mdbook-runnable
@@ -19,7 +19,7 @@ fn main() {
1919 println!("{} days", 31);
2020
2121 // Without a suffix, 31 becomes an i32. You can change what type 31 is
22- // by providing a suffix.
22+ // by providing a suffix. The number 31i64 for example has the type i64.
2323
2424 // There are various optional patterns this works with. Positional
2525 // arguments can be used.
You can’t perform that action at this time.
0 commit comments