1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-02 17:48:47 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>