Skip to content

Commit

Permalink
Fix a spelling error in ch02-00-guessing-game-tutorial.md (#53)
Browse files Browse the repository at this point in the history
`1..=100`라고 -> `1..=100`이라고
  • Loading branch information
chosungmann authored Mar 11, 2024
1 parent 3c81075 commit 7cf812a
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 @@ -530,7 +530,7 @@ rand = "0.9.0"
범위 표현식을 인수로 받아서 해당 범위 내 임의의 숫자를 생성합니다.
여기서 사용하고자 하는 범위 표현식은 `start..=end`이고 이는
상한선과 하한선을 포함하므로, 1부터 100 사이의 숫자를
생성하려면 `1..=100`라고 지정해야 합니다.
생성하려면 `1..=100`이라고 지정해야 합니다.

> Note: 어떤 크레이트에서 어떤 트레이트를 사용할지, 그리고 어떤 메서드와
> 함수를 호출해야 할지 모를 수도 있으므로, 각 크레이트는 사용법을 담고
Expand Down

0 comments on commit 7cf812a

Please sign in to comment.