Skip to content

Commit d8b7aed

Browse files
committed
Fix an incorrect anchor link
`#` 以降のアンカーリンクが原文のままになっていました。 https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html#handling-potential-failure-with-the-result-type
1 parent aef6a66 commit d8b7aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch09-02-recoverable-errors-with-result.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defined as having two variants, `Ok` and `Err`, as follows:
2525
第2章の[`Result`型で失敗する可能性に対処する」][handle_failure]`Result` enumが以下のように、
2626
`Ok``Err`の2列挙子からなるよう定義されていることを思い出してください:
2727

28-
[handle_failure]: ch02-00-guessing-game-tutorial.html#handling-potential-failure-with-the-result-type
28+
[handle_failure]: ch02-00-guessing-game-tutorial.html#result型で失敗の可能性を扱う
2929

3030
```rust
3131
enum Result<T, E> {

0 commit comments

Comments
 (0)