1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-21 22:49:44 +02:00

Merge pull request #104 from liao02x/patch-1

fix typo in deriving-error-enums.md
This commit is contained in:
Martin Geisler 2023-01-04 09:10:18 +01:00 committed by GitHub
commit bffd70a90e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
# Deriving Error Enums
The [thiserror](https://docs.rs/thiserror/) crate is a popular way to crate an
The [thiserror](https://docs.rs/thiserror/) crate is a popular way to create an
error enum like we did on the previous page:
```rust,editable,compile_fail