Merge pull request #1581 from tuyen-at-work/patch-2

Fix inconsistent between bash version and rust version of the sample
This commit is contained in:
Eric Huss 2021-06-19 07:21:44 -07:00 committed by GitHub
commit 4d2dc6f482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ Will render as
```rust
# fn main() {
let x = 5;
let y = 7;
let y = 6;
println!("{}", x + y);
# }