1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-15 13:50:27 +02:00

Fix typo in basic-syntax/variables.md. (#339)

This commit is contained in:
gendx
2023-02-03 15:30:44 +00:00
committed by GitHub
parent b5518e9b16
commit ace97aaeb2

View File

@ -14,7 +14,7 @@ fn main() {
<details>
* Due to type inference the `i32` is optional. We will gradually show the types less and less as the type progresses.
* Due to type inference the `i32` is optional. We will gradually show the types less and less as the course progresses.
* Note that since `println!` is a macro, `x` is not moved, even using the function like syntax of `println!("x: {}", x)`
</details>