From e49a3c0bfe9f736b8a09f7461da1e17249b697f9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 29 Feb 2024 10:16:39 +1100 Subject: [PATCH] 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. --- internals/src/error/parse_error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/src/error/parse_error.rs b/internals/src/error/parse_error.rs index d8a99d21..7f8903dd 100644 --- a/internals/src/error/parse_error.rs +++ b/internals/src/error/parse_error.rs @@ -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