From 7a691934e2873dee95d9fedd88cc3ec72deff412 Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Thu, 24 Oct 2024 18:13:42 +0000 Subject: [PATCH] doc: Update --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c29d28..bfc8578 100644 --- a/README.md +++ b/README.md @@ -493,8 +493,9 @@ error_set! { } || AuthError; } ``` -> Note: If a custom display is not provided for a wrapped error type like `IoError(std::io::Error)`, it will delegate its display -> to the inner type (`std::io::Error`). If it is desired to prevent this, provide a custom display message, like in the above example, or add `#[display(opaque)]`. +> Note: If a custom display is not provided for a wrapped error type like `IoError(std::io::Error)`, it will directly +> delegate its display to the inner type (`std::io::Error`). If it is desired to prevent this, provide a custom +> display message, like in the above example, or add `#[display(opaque)]`.