Fix doc comment typo

This commit is contained in:
Ole Martin Ruud 2018-11-27 02:41:00 +01:00 committed by David Peter
parent 6aa002850c
commit 6b6a8f8e16
1 changed files with 2 additions and 2 deletions

View File

@ -195,8 +195,8 @@ fn run_controller(config: &Config) -> Result<bool> {
controller.run()
}
/// Returns `Err(..)` upon fatal errors. Otherwise, returns `Some(true)` on full success and
/// `Some(false)` if any intermediate errors occurred (were printed).
/// Returns `Err(..)` upon fatal errors. Otherwise, returns `Ok(true)` on full success and
/// `Ok(false)` if any intermediate errors occurred (were printed).
fn run() -> Result<bool> {
let app = App::new()?;