Skip to content

Commit bb631a2

Browse files
authored
Fix typo (#72)
1 parent 580bab1 commit bb631a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/ch02-00-guessing-game-tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ let apples = 5;
144144

145145
```rust,ignore
146146
let apples = 5; // immutable
147-
let mut bananas= 5; // mutable
147+
let mut bananas = 5; // mutable
148148
```
149149

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

0 commit comments

Comments
 (0)