Skip to content

Commit

Permalink
Fix typo (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajb3296 authored Nov 25, 2023
1 parent b66858a commit 2165b39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ch09-01-unrecoverable-errors-with-panic.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ C에서 데이터 구조의 끝을 넘어서 읽는 시도는 정의되지 않
{{#include ../listings/ch09-error-handling/listing-09-01/output.txt}}
```

위 에러는 99 인덱스로 접근을 시도한 `maian.rs` 4번째 줄을 가리키고
위 에러는 99 인덱스로 접근을 시도한 `main.rs` 4번째 줄을 가리키고
있습니다. 그다음 줄은 `RUST_BACKTRACE` 환경 변수를 설정하여 에러의
원인이 무엇인지 정확하게 백트레이스할 수 있다고 말해주고 있습니다.
*백트레이스 (backtrace)* 란 어떤 지점에 도달하기까지 호출한 모든 함수의
Expand Down
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 @@ -509,7 +509,7 @@ don't want to include it for rustdoc testing purposes. -->
[‘트레이트 객체를 사용하여 다른 타입의 값 허용하기’][trait-objects]<!-- ignore -->절에서
다룰 예정입니다. 지금은 `Box<dyn Error>`가 ‘어떠한 종류의 에러’를
의미한다고 읽으면 됩니다. 반환할 에러 타입이 `Box<dyn Error>`
`Result`이면 어떠한 `Err` 값을 일찍 반활할 수 있으므로
`Result`이면 어떠한 `Err` 값을 일찍 반환할 수 있으므로
`main`에서의 `?` 사용이 허용됩니다. `main` 함수의 구현 내용이
`std::io::Error` 타입의 에러만 반환하겠지만, 이 함수 시그니처에
`Box<dyn Error>`라고 명시하면 이후 `main`의 구현체에 다른 에러들을
Expand Down

0 comments on commit 2165b39

Please sign in to comment.