From d491b8884060508c6abaa911bf0abebd32469990 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 29 Apr 2023 12:14:58 -0700 Subject: [PATCH] Mark format_err macro as doc(no_inline) --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index a146e45..90b02cc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -266,6 +266,7 @@ trait StdError: Debug + Display { } } +#[doc(no_inline)] pub use anyhow as format_err; /// The `Error` type, a wrapper around a dynamic error type.