Skip to content

Commit

Permalink
Typo: Update ch02-00-guessing-game-tutorial.md (#33)
Browse files Browse the repository at this point in the history
어색한 조사를 변경하였습니다. '변수 이름이' -> '변수 이름을'
  • Loading branch information
boulce committed Feb 5, 2024
1 parent c832347 commit 74bf77a
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 @@ -278,7 +278,7 @@ io::stdin().read_line(&mut guess).expect("Failed to read line");
이 라인은 사용자가 입력한 값을 담고 있는 문자열을 출력합니다. `{}`
자리표시자 (placeholder) 입니다: `{}`를 어떤 위치에 값을 자리하도록
하는 작은 집게발이라고 생각하면 됩니다. 어떤 변수의 값을 출력할 때라면
해당 변수 이름이 이 중괄호 안에 넣을 수 있습니다. 어떤 표현식의 결괏값을
해당 변수 이름을 이 중괄호 안에 넣을 수 있습니다. 어떤 표현식의 결괏값을
출력할 때는 빈 중괄호를 형식 문자열에 위치시키고, 그 뒤에 쉼표로 구분된
표현식들을 나열하여 각 중괄호에 순차적으로 출력하도록 할 수 있습니다.
어떤 변수와 표현식 결괏값을 한 번의 `println!` 호출로 출력한다면 아래와
Expand Down

0 comments on commit 74bf77a

Please sign in to comment.