lib: Remove erroneous “reference” mention in the module docstring.

This commit is contained in:
Emmanuel Gil Peyrot 2017-07-29 05:24:20 +01:00
parent 45d196463c
commit 5388696b95

View file

@ -1,7 +1,7 @@
//! A crate parsing common XMPP elements into Rust structures. //! A crate parsing common XMPP elements into Rust structures.
//! //!
//! Each module implements the [`TryFrom<Element>`] trait, which takes a minidom //! Each module implements the [`TryFrom<Element>`] trait, which takes a
//! [`Element`] reference and returns a `Result` whose value is `Ok` if the //! minidom [`Element`] and returns a `Result` whose value is `Ok` if the
//! element parsed correctly, `Err(error::Error)` otherwise. //! element parsed correctly, `Err(error::Error)` otherwise.
//! //!
//! The returned structure can be manipuled as any Rust structure, with each //! The returned structure can be manipuled as any Rust structure, with each