From 8d36a3bdd38ef81b1630c10da863d3c759b631d5 Mon Sep 17 00:00:00 2001 From: liao02x Date: Tue, 3 Jan 2023 21:18:30 -0800 Subject: [PATCH] fix typo in deriving-error-enums.md --- src/error-handling/deriving-error-enums.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error-handling/deriving-error-enums.md b/src/error-handling/deriving-error-enums.md index 38deb8db..2abdb05c 100644 --- a/src/error-handling/deriving-error-enums.md +++ b/src/error-handling/deriving-error-enums.md @@ -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