Skip to content

Commit

Permalink
Fix typo (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhea-so authored Dec 27, 2024
1 parent 580bab1 commit bb631a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch02-00-guessing-game-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ let apples = 5;

```rust,ignore
let apples = 5; // immutable
let mut bananas= 5; // mutable
let mut bananas = 5; // mutable
```

> Note: `//` 문법은 현재 위치부터 라인의 끝까지 주석임을 나타냅니다.
Expand Down

0 comments on commit bb631a2

Please sign in to comment.