This commit is contained in:
Mathieu David 2017-06-23 01:10:18 +02:00
parent 28afebdca2
commit f3cb4265ca
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
//! .with_source("src") // Path from root to source directory
//! .with_destination("book") // Path from root to output directory
//! .read_config() // Parse book.toml configuration file
//! .expect("I don't handle configuration file error, but you should!");
//! .expect("I don't handle configuration file errors, but you should!");
//!
//! book.build().unwrap(); // Render the book
//! }