docs: remove redundant example

This commit is contained in:
Marli Frost 2020-08-19 13:52:46 +01:00
parent bebecb8301
commit 599640c1eb
No known key found for this signature in database
GPG key ID: CB0BEA7CF9BD1245

View file

@ -356,15 +356,6 @@ impl<R: Read + io::Seek> ZipArchive<R> {
} }
/// Number of files contained in this zip. /// 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 { pub fn len(&self) -> usize {
self.files.len() self.files.len()
} }