We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db57f89 + 6bd86d4 commit 0465376Copy full SHA for 0465376
src/hello/print.md
@@ -9,7 +9,7 @@ some of which include:
9
* `eprint!`: same as `format!` but the text is printed to the standard error (io::stderr).
10
* `eprintln!`: same as `eprint!`but a newline is appended.
11
12
-All parse text in the same fashion. As a plus, Rust checks formatting
+All parse text in the same fashion. As a plus, Rust checks formatting
13
correctness at compile time.
14
15
```rust,editable,ignore,mdbook-runnable
@@ -19,7 +19,7 @@ fn main() {
19
println!("{} days", 31);
20
21
// Without a suffix, 31 becomes an i32. You can change what type 31 is
22
- // by providing a suffix.
+ // by providing a suffix. The number 31i64 for example has the type i64.
23
24
// There are various optional patterns this works with. Positional
25
// arguments can be used.
0 commit comments