Fix doc test II

This commit is contained in:
Mathieu David 2015-09-11 21:21:26 +02:00
parent a32d170667
commit 754773f857
1 changed files with 4 additions and 4 deletions

View File

@ -45,15 +45,15 @@ impl MDBook {
/// ```no_run
/// # extern crate mdbook;
/// # use mdbook::MDBook;
/// # use bookitem::BookItem;
/// # use mdbook::BookItem;
/// # use std::path::Path;
/// # fn main() {
/// # let mut book = MDBook::new(Path::new("mybook"));
/// for item in book.iter() {
/// match item {
/// BookItem::Chapter(section, chapter) => {},
/// BookItem::Affix(chapter) => {},
/// BookItem::Spacer => {},
/// &BookItem::Chapter(ref section, ref chapter) => {},
/// &BookItem::Affix(ref chapter) => {},
/// &BookItem::Spacer => {},
/// }
/// }
///