Skip to content

Commit

Permalink
Fix crate name in html_root_url
Browse files Browse the repository at this point in the history
Rustdoc will redirect, but this saves 1 redirect.
  • Loading branch information
dtolnay committed Nov 3, 2023
1 parent e84a6e1 commit 7e5037b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
//! // and similar for Box<dyn MyTrait + Send>, Box<dyn MyTrait + Sync>, Box<dyn MyTrait + Send + Sync>
//! ```

#![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,
Expand Down

0 comments on commit 7e5037b

Please sign in to comment.