From 3c9fa1ccdf66b533113a2c8d8f7f6ff4fbb457b9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 21 Dec 2020 10:35:22 -0800 Subject: [PATCH] Switch to short form for serde.rs link in rustdoc Fixes a rustdoc warning: warning: unneeded long form for URL --> serde/src/lib.rs:12:27 | 12 | //! See the Serde website [https://serde.rs/] for additional documentation and | ^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `` | = note: `#[warn(non_autolinks)]` on by default --- serde/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 6b631c18..902fcb2e 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -9,11 +9,9 @@ //! these two groups interact with each other, allowing any supported data //! structure to be serialized and deserialized using any supported data format. //! -//! See the Serde website [https://serde.rs/] for additional documentation and +//! See the Serde website for additional documentation and //! usage examples. //! -//! [https://serde.rs/]: https://serde.rs/ -//! //! ## Design //! //! Where many other languages rely on runtime reflection for serializing data,