From c0dfd54f2c3617fe624143fd845bc54b8ba2b361 Mon Sep 17 00:00:00 2001 From: Grzegorz Milka <58550712+gregatgoogle@users.noreply.github.com> Date: Tue, 19 Dec 2023 15:41:51 +0100 Subject: [PATCH] fix: change "widley" to "widely" (#1599) Co-authored-by: Dustin J. Mitchell --- src/error-handling/thiserror-and-anyhow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.