From e4d20c47bbade173b4be1bcf53142a03eadccb91 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 27 Dec 2021 12:30:55 +0100 Subject: [PATCH] parsers: Only warn on missing docs Erroring out was making us add /// TODO to avoid the error, and that is much less visible than a warning. --- parsers/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers/src/lib.rs b/parsers/src/lib.rs index c0ad7eeb..d5aae810 100644 --- a/parsers/src/lib.rs +++ b/parsers/src/lib.rs @@ -21,7 +21,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. -#![deny(missing_docs)] +#![warn(missing_docs)] pub use crate::util::error::Error; pub use jid::{BareJid, FullJid, Jid, JidParseError};