We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 078aff8 + 85a90a3 commit 85b031bCopy full SHA for 85b031b
src/doc/book/error-handling.md
@@ -2122,7 +2122,7 @@ heuristics!
2122
`unwrap`. Be warned: if it winds up in someone else's hands, don't be
2123
surprised if they are agitated by poor error messages!
2124
* If you're writing a quick 'n' dirty program and feel ashamed about panicking
2125
- anyway, then using either a `String` or a `Box<Error + Send + Sync>` for your
+ anyway, then use either a `String` or a `Box<Error + Send + Sync>` for your
2126
error type (the `Box<Error + Send + Sync>` type is because of the
2127
[available `From` impls](../std/convert/trait.From.html)).
2128
* Otherwise, in a program, define your own error types with appropriate
0 commit comments