From 7e5037b8242739a52e36bff94d405caede2cace8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 2 Nov 2023 21:47:06 -0400 Subject: [PATCH] Fix crate name in html_root_url Rustdoc will redirect, but this saves 1 redirect. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7cc2ffd..2195d92 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,7 @@ //! // and similar for Box, Box, Box //! ``` -#![doc(html_root_url = "https://docs.rs/dyn_clone/1.0.15")] +#![doc(html_root_url = "https://docs.rs/dyn-clone/1.0.15")] #![no_std] #![allow( clippy::missing_panics_doc,