Remove link to std from rustdoc

We can't link to `std::error::Error` in rustdoc because it breaks
non-std builds. Just use backticks - this is not an optimal solution but
I know no other.

I have no clue why this is showing up now.
This commit is contained in:
Tobin C. Harding 2024-02-29 10:16:39 +11:00
parent 1f3d05ea98
commit e49a3c0bfe
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
/// [`InputString`](super::InputString), the type of `source` is specified as the second argument
/// to the macro.
///
/// The resulting type is public, conditionally implements [`std::error::Error`] and has a private
/// The resulting type is public, conditionally implements `std::error::Error` and has a private
/// `new()` method for convenience.
///
/// ## Parameters