From cecccfafd8f21307af4a1887e2b6d8724b184442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Wed, 8 May 2024 16:53:15 +0200 Subject: [PATCH] derives --> implements Error trait --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e30a1d..aa36d64 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ and more! ## Features -`std`: derives the `Error` trait for the error types. +`std`: implements the `Error` trait for the error types. ## License diff --git a/src/lib.rs b/src/lib.rs index 0b0f3f0..0e1e4d7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -99,7 +99,7 @@ //! //! # Features //! -//! `std`: derives the [`Error`](std::error::Error) trait for the error types. +//! `std`: implements the [`Error`](std::error::Error) trait for the error types. #![forbid(unsafe_code)] #![cfg_attr(all(not(test), not(feature = "std")), no_std)]