From 1ae347f2ef414fbf474497350917d26e918f5e45 Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 27 Sep 2021 13:49:08 +0200 Subject: [PATCH] Remove unused imports from doc examples. --- opml_api/source/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opml_api/source/lib.rs b/opml_api/source/lib.rs index 7650b99..3ad5e4d 100644 --- a/opml_api/source/lib.rs +++ b/opml_api/source/lib.rs @@ -16,7 +16,7 @@ //! [as per the spec]: http://opml.org/spec2.opml#1629042198000 //! //! ```rust -//! use opml::{OPML, Outline}; +//! use opml::OPML; //! //! let xml = r#""#; //! let document = OPML::from_str(xml).unwrap(); @@ -125,7 +125,7 @@ impl OPML { /// # Example /// /// ```rust,no_run - /// use opml::{OPML, Outline}; + /// use opml::OPML; /// use std::fs::File; /// /// let mut file = File::open("file.opml").unwrap();