1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-07 15:38:47 +02:00

fix: change "widley" to "widely" (#1599)

Co-authored-by: Dustin J. Mitchell <djmitche@google.com>
This commit is contained in:
Grzegorz Milka 2023-12-19 15:41:51 +01:00 committed by GitHub
parent 75145070de
commit c0dfd54f2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<T>`. `anyhow` helps with error
handling in functions, including adding contextual information to your errors.