Skip to content

Commit

Permalink
fix: type inline code block in ch03-01 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
song-hee-1 committed Mar 30, 2024
1 parent bf4d8b9 commit 1a651b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch03-01-variables-and-mutability.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const THREE_HOURS_IN_SECONDS: u32 = 60 * 60 * 3;
이름을 사용할 때 컴파일러가 두 번째 변수를 보게 될 것이라는
의미입니다. 사실상 두 번째 변수는 첫 번째 것을 가려서, 스스로를 다시
가리거나 스코프가 끝날 때까지 변수명의 사용을 가져가 버립니다.
아래처럼 똑같은 변수명과 let` 키워드의 반복으로 변수를 가릴 수
아래처럼 똑같은 변수명과 `let` 키워드의 반복으로 변수를 가릴 수
있습니다:

<span class="filename">파일명: src/main.rs</span>
Expand Down

0 comments on commit 1a651b7

Please sign in to comment.