From 5388696b9526c3378db93a325822e7f5b45a8ce3 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 29 Jul 2017 05:24:20 +0100 Subject: [PATCH] =?UTF-8?q?lib:=20Remove=20erroneous=20=E2=80=9Creference?= =?UTF-8?q?=E2=80=9D=20mention=20in=20the=20module=20docstring.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b3f57fdf..ce1610e4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! A crate parsing common XMPP elements into Rust structures. //! -//! Each module implements the [`TryFrom`] trait, which takes a minidom -//! [`Element`] reference and returns a `Result` whose value is `Ok` if the +//! Each module implements the [`TryFrom`] trait, which takes a +//! minidom [`Element`] and returns a `Result` whose value is `Ok` if the //! element parsed correctly, `Err(error::Error)` otherwise. //! //! The returned structure can be manipuled as any Rust structure, with each