diff --git a/src/error-handling/thiserror-and-anyhow.md b/src/error-handling/thiserror-and-anyhow.md index 612dedf7..21ccf423 100644 --- a/src/error-handling/thiserror-and-anyhow.md +++ b/src/error-handling/thiserror-and-anyhow.md @@ -5,7 +5,7 @@ minutes: 5 # `thiserror` and `anyhow` The [`thiserror`](https://docs.rs/thiserror/) and [`anyhow`](https://docs.rs/anyhow/) -crates are widley used to simplify error handling. `thiserror` helps +crates are widely used to simplify error handling. `thiserror` helps create custom error types that implement `From`. `anyhow` helps with error handling in functions, including adding contextual information to your errors.