Skip to content

Commit

Permalink
doc: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmah309 committed Oct 24, 2024
1 parent 8347082 commit 7a69193
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)]`.
<details>

Expand Down

0 comments on commit 7a69193

Please sign in to comment.