Skip to content

Commit

Permalink
Fix spelling errors in Chapter 3 (#55)
Browse files Browse the repository at this point in the history
* `i`로 시작합니다.) -> `i`로 시작합니다).
* `while`를 -> `while`을
  • Loading branch information
chosungmann authored Mar 22, 2024
1 parent 2bc22d3 commit 906b0b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ch03-02-data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let guess: u32 = "42".parse().expect("Not a number!");
*정수형 (integer type)* 은 소수점이 없는 숫자입니다. 2장에서
정수형 중 하나인 `u32` 타입을 사용했었죠. 해당 타입의 선언은
부호 없는 32비트 변수임을 나타냅니다 (부호 있는 타입은 `u` 대신
`i`로 시작합니다.) 표 3-1은 러스트에서 사용되는 정수형들을
`i`로 시작합니다). 표 3-1은 러스트에서 사용되는 정수형들을
보여줍니다. 이 변형 중 어떤 것이라도 정숫값의 타입 선언에
사용할 수 있습니다.

Expand Down
2 changes: 1 addition & 1 deletion src/ch03-05-control-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ again!

#### `for`를 이용한 컬렉션에 대한 반복문

`while` 사용하여 배열과 같은 컬렉션의 각 요소에 대한 반복문을
`while` 사용하여 배열과 같은 컬렉션의 각 요소에 대한 반복문을
작성할 수 있습니다. 한 가지 예로 예제 3-4의 반복문은
`a`라는 배열의 각 요소를 출력합니다.

Expand Down

0 comments on commit 906b0b8

Please sign in to comment.