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:
9
9
* ` eprint! ` : same as ` format! ` but the text is printed to the standard error (io::stderr).
10
10
* ` eprintln! ` : same as ` eprint! ` but a newline is appended.
11
11
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
13
13
correctness at compile time.
14
14
15
15
``` rust,editable,ignore,mdbook-runnable
@@ -19,7 +19,7 @@ fn main() {
19
19
println!("{} days", 31);
20
20
21
21
// 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.
23
23
24
24
// There are various optional patterns this works with. Positional
25
25
// arguments can be used.
You can’t perform that action at this time.
0 commit comments