From 599640c1ebea92fc70a560037cb402c08fabc68b Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Wed, 19 Aug 2020 13:52:46 +0100 Subject: [PATCH] docs: remove redundant example --- src/read.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/read.rs b/src/read.rs index 2a8dcff5..9a977359 100644 --- a/src/read.rs +++ b/src/read.rs @@ -356,15 +356,6 @@ impl ZipArchive { } /// Number of files contained in this zip. - /// - /// ```no_run - /// let mut zip = zip::ZipArchive::new(std::io::Cursor::new(vec![])).unwrap(); - /// - /// for i in 0..zip.len() { - /// let mut file = zip.by_index(i).unwrap(); - /// // Do something with file i - /// } - /// ``` pub fn len(&self) -> usize { self.files.len() }