From f3cb4265caa15663ca018dd7bfddd59e0dcd59ec Mon Sep 17 00:00:00 2001 From: Mathieu David Date: Fri, 23 Jun 2017 01:10:18 +0200 Subject: [PATCH] Fix typo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f98ad69f..e91f18a4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 //! }