Merge pull request #1212 from Tostapunk/fix/errors-patch1

fix: Fix typo in errors5 hint
This commit is contained in:
liv 2022-09-29 10:44:20 +02:00 committed by GitHub
commit 2e33d422a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -627,7 +627,7 @@ propagated using `?` operators. How do we declare a return type from `main()` th
Under the hood, the `?` operator calls `From::from` on the error value to convert it to a boxed
trait object, a `Box<dyn error::Error>`. This boxed trait object is polymorphic, and since all
errors implement the `error:Error` trait, we can capture lots of different errors in one "Box"
errors implement the `error::Error` trait, we can capture lots of different errors in one "Box"
object.
Check out this section of the book: