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.
This commit is contained in:
Emmanuel Gil Peyrot 2021-12-27 12:30:55 +01:00
parent 9401b79a02
commit e4d20c47bb

View file

@ -21,7 +21,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this // 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/. // 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 crate::util::error::Error;
pub use jid::{BareJid, FullJid, Jid, JidParseError}; pub use jid::{BareJid, FullJid, Jid, JidParseError};