From 73e92b3e8373e7bec563c9e1e7b7d896661363c1 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Tue, 16 Apr 2024 21:32:31 +0000 Subject: [PATCH] chore: fix doc url (#280) It has to end with version (or latest). Fixes ecb73745c552f9df53f8943ea80e9bebf51643a2. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4c0eb8472..5424ffd11 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -160,7 +160,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/tempfile/latest/tempfile" + html_root_url = "https://docs.rs/tempfile/latest" )] #![cfg_attr(test, deny(warnings))] #![deny(rust_2018_idioms)]