From 4d6ad2cc1f3cc178856a4f5c0a9d548a4246445f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Tue, 20 Jul 2021 20:32:38 +1200 Subject: [PATCH] Use website as source for docs logo --- lib/src/lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 442c3a3..3b9e0c9 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -4,10 +4,8 @@ //! //! [Watchexec]: https://github.com/watchexec/watchexec -#![doc( - html_favicon_url = "https://raw.githubusercontent.com/watchexec/watchexec/main/doc/logo.svg" -)] -#![doc(html_logo_url = "https://raw.githubusercontent.com/watchexec/watchexec/main/doc/logo.svg")] +#![doc(html_favicon_url = "https://watchexec.github.io/logo:watchexec.svg")] +#![doc(html_logo_url = "https://watchexec.github.io/logo:watchexec.svg")] #![warn(clippy::unwrap_used)] #[macro_use]