Skip to content

Commit

Permalink
fix: 동작하지 않는 링크 수정 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
oror-sine committed Mar 28, 2024
1 parent 90d5181 commit bf4d8b9
Show file tree
Hide file tree
Showing 17 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion src/appendix-01-keywords.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* `where` - 어떤 타입을 제한하는 구절 나타내기
* `while` - 표현식의 결과에 따라 조건 반복하기

[union]: ../reference/items/unions.html
[union]: https://doc.rust-lang.org/reference/items/unions.html

### 미래에 사용하기 위해 예약된 키워드

Expand Down
14 changes: 7 additions & 7 deletions src/ch02-00-guessing-game-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -917,15 +917,15 @@ You win!
러스트의 특성인 소유권을 다룹니다. 5장에서는 구조체와 메서드 문법을
다루며 6장에서는 열거형에 대해 다룹니다.

[prelude]: ../std/prelude/index.html
[prelude]: https://doc.rust-lang.org/std/prelude/index.html
[variables-and-mutability]: ch03-01-variables-and-mutability.html#variables-and-mutability
[comments]: ch03-04-comments.html
[string]: ../std/string/struct.String.html
[iostdin]: ../std/io/struct.Stdin.html
[read_line]: ../std/io/struct.Stdin.html#method.read_line
[result]: ../std/result/enum.Result.html
[string]: https://doc.rust-lang.org/std/string/struct.String.html
[iostdin]: https://doc.rust-lang.org/std/io/struct.Stdin.html
[read_line]: https://doc.rust-lang.org/std/io/struct.Stdin.html#method.read_line
[result]: https://doc.rust-lang.org/std/result/enum.Result.html
[enums]: ch06-00-enums.html
[expect]: ../std/result/enum.Result.html#method.expect
[expect]: https://doc.rust-lang.org/std/result/enum.Result.html#method.expect
[recover]: ch09-02-recoverable-errors-with-result.html
[randcrate]: https://crates.io/crates/rand
[semver]: http://semver.org
Expand All @@ -934,5 +934,5 @@ You win!
[doccratesio]: http://doc.crates.io/crates-io.html
[match]: ch06-02-match.html
[shadowing]: ch03-01-variables-and-mutability.html#shadowing
[parse]: ../std/primitive.str.html#method.parse
[parse]: https://doc.rust-lang.org/std/primitive.str.html#method.parse
[integers]: ch03-02-data-types.html#integer-types
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 @@ -188,4 +188,4 @@ const THREE_HOURS_IN_SECONDS: u32 = 60 * 60 * 3;
ch02-00-guessing-game-tutorial.html#%EB%B9%84%EB%B0%80%EB%B2%88%ED%98%B8%EC%99%80-%EC%B6%94%EB%A6%AC%EA%B0%92%EC%9D%84-%EB%B9%84%EA%B5%90%ED%95%98%EA%B8%B0
[data-types]: ch03-02-data-types.html#data-types
[storing-values-with-variables]: ch02-00-guessing-game-tutorial.html#storing-values-with-variables
[const-eval]: ../reference/const_eval.html
[const-eval]: https://doc.rust-lang.org/reference/const_eval.html
2 changes: 1 addition & 1 deletion src/ch04-01-what-is-ownership.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,4 +489,4 @@ style="width: 50%;" />
[derivable-traits]: appendix-03-derivable-traits.html
[method-syntax]: ch05-03-method-syntax.html#method-syntax
[paths-module-tree]: ch07-03-paths-for-referring-to-an-item-in-the-module-tree.html
[drop]: ../std/ops/trait.Drop.html#tymethod.drop
[drop]: https://doc.rust-lang.org/std/ops/trait.Drop.html#tymethod.drop
6 changes: 3 additions & 3 deletions src/ch05-02-example-structs.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@

[the-tuple-type]: ch03-02-data-types.html#the-tuple-type
[app-c]: appendix-03-derivable-traits.md
[println]: ../std/macro.println.html
[dbg]: ../std/macro.dbg.html
[println]: https://doc.rust-lang.org/std/macro.println.html
[dbg]: https://doc.rust-lang.org/std/macro.dbg.html
[err]: ch12-06-writing-to-stderr-instead-of-stdout.html
[attributes]: ../reference/attributes.html
[attributes]: https://doc.rust-lang.org/reference/attributes.html
6 changes: 3 additions & 3 deletions src/ch06-01-defining-an-enum.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,6 @@ enum Option<T> {
다른 코드를 실행하고 매칭되는 값 내부의 데이터를 해당 코드에서
사용할 수 있습니다.

[IpAddr]: ../std/net/enum.IpAddr.html
[option]: ../std/option/enum.Option.html
[docs]: ../std/option/enum.Option.html
[IpAddr]: https://doc.rust-lang.org/std/net/enum.IpAddr.html
[option]: https://doc.rust-lang.org/std/option/enum.Option.html
[docs]: https://doc.rust-lang.org/std/option/enum.Option.html
4 changes: 2 additions & 2 deletions src/ch08-01-vectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,6 @@
이제 다음 컬렉션 타입인 `String`으로 넘어갑시다!

[data-types]: ch03-02-data-types.html#data-types
[nomicon]: ../nomicon/vec/vec.html
[vec-api]: ../std/vec/struct.Vec.html
[nomicon]: https://doc.rust-lang.org/nomicon/vec/vec.html
[vec-api]: https://doc.rust-lang.org/std/vec/struct.Vec.html
[deref]: ch15-02-deref.html#following-the-pointer-to-the-value-with-the-dereference-operator
2 changes: 1 addition & 1 deletion src/ch09-02-recoverable-errors-with-result.md
Original file line number Diff line number Diff line change
Expand Up @@ -534,4 +534,4 @@ don't want to include it for rustdoc testing purposes. -->

[handle_failure]: ch02-00-guessing-game-tutorial.html#handling-potential-failure-with-result
[trait-objects]: ch17-02-trait-objects.html#using-trait-objects-that-allow-for-values-of-different-types
[termination]: ../std/process/trait.Termination.html
[termination]: https://doc.rust-lang.org/std/process/trait.Termination.html
2 changes: 1 addition & 1 deletion src/ch10-03-lifetime-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -619,4 +619,4 @@ let s: &'static str = "I have a static lifetime.";
ch04-02-references-and-borrowing.html#references-and-borrowing
[string-slices-as-parameters]:
ch04-03-slices.html#string-slices-as-parameters
[reference]: ../reference/index.html
[reference]: https://doc.rust-lang.org/reference/index.html
2 changes: 1 addition & 1 deletion src/ch11-01-writing-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ cd ../../..

[concatenation-with-the--operator-or-the-format-macro]:
ch08-02-strings.html#concatenation-with-the--operator-or-the-format-macro
[bench]: ../unstable-book/library-features/test.html
[bench]: https://doc.rust-lang.org/unstable-book/library-features/test.html
[ignoring]: ch11-02-running-tests.html#ignoring-some-tests-unless-specifically-requested
[subset]: ch11-02-running-tests.html#running-a-subset-of-tests-by-name
[controlling-how-tests-are-run]:
Expand Down
2 changes: 1 addition & 1 deletion src/ch13-01-closures.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,4 +420,4 @@ r.width`는 자신의 환경으로부터 어떤 것도 캡처나 변형, 혹은
클로저 인수를 받으니, 계속 진행하면서 이러한 클로저 세부 내용을
새겨둡시다!

[unwrap-or-else]: ../std/option/enum.Option.html#method.unwrap_or_else
[unwrap-or-else]: https://doc.rust-lang.org/std/option/enum.Option.html#method.unwrap_or_else
2 changes: 1 addition & 1 deletion src/ch15-06-reference-cycles.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,4 +317,4 @@ children: RefCell { value: [] } }] } })
다음에는 러스트의 동시성에 대해 이야기해 보겠습니다. 심지어 몇 가지 새로운
스마트 포인터에 대해서도 배우게 될 것입니다.

[nomicon]: ../nomicon/index.html
[nomicon]: https://doc.rust-lang.org/nomicon/index.html
2 changes: 1 addition & 1 deletion src/ch16-03-shared-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ Result: 10
이제 `Send``Sync` 트레이트와 이를 커스텀 타입과 함께 사용하는 방법을 이야기하는
것으로 이 장을 마무리 하겠습니다.

[atomic]: ../std/sync/atomic/index.html
[atomic]: https://doc.rust-lang.org/std/sync/atomic/index.html
2 changes: 1 addition & 1 deletion src/ch16-04-extensible-concurrency-sync-and-send.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@

[sharing-a-mutext-between-multiple-threads]:
ch16-03-shared-state.html#sharing-a-mutext-between-multiple-threads
[nomicon]: ../nomicon/index.html
[nomicon]: https://doc.rust-lang.org/nomicon/index.html
2 changes: 1 addition & 1 deletion src/ch19-01-unsafe-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,4 +457,4 @@ ch03-01-variables-and-mutability.html#constants
[extensible-concurrency-with-the-sync-and-send-traits]:
ch16-04-extensible-concurrency-sync-and-send.html#extensible-concurrency-with-the-sync-and-send-traits
[the-slice-type]: ch04-03-slices.html#the-slice-type
[reference]: ../reference/items/unions.html
[reference]: https://doc.rust-lang.org/reference/items/unions.html
2 changes: 1 addition & 1 deletion src/ch19-06-macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ pub fn sql(input: TokenStream) -> TokenStream {
다음으로는 이 책에서 논의한 모든 내용을 실제로 적용하여 프로젝트를
하나 더 해보겠습니다!

[ref]: ../reference/macros-by-example.html
[ref]: https://doc.rust-lang.org/reference/macros-by-example.html
[tlborm]: https://veykril.github.io/tlborm/
[`syn`]: https://crates.io/crates/syn
[`quote`]: https://crates.io/crates/quote
Expand Down
4 changes: 2 additions & 2 deletions src/ch20-02-multithreaded.md
Original file line number Diff line number Diff line change
Expand Up @@ -694,5 +694,5 @@ ch19-04-advanced-types.html#creating-type-synonyms-with-type-aliases
[integer-types]: ch03-02-data-types.html#integer-types
[fn-traits]:
ch13-01-closures.html#moving-captured-values-out-of-the-closure-and-the-fn-traits
[builder]: ../std/thread/struct.Builder.html
[builder-spawn]: ../std/thread/struct.Builder.html#method.spawn
[builder]: https://doc.rust-lang.org/std/thread/struct.Builder.html
[builder-spawn]: https://doc.rust-lang.org/std/thread/struct.Builder.html#method.spawn

0 comments on commit bf4d8b9

Please sign in to comment.