From 6b6a8f8e160e3dc0ca887253429623b0360913cf Mon Sep 17 00:00:00 2001 From: Ole Martin Ruud Date: Tue, 27 Nov 2018 02:41:00 +0100 Subject: [PATCH] Fix doc comment typo --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index e592c1d5..30b7edf0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -195,8 +195,8 @@ fn run_controller(config: &Config) -> Result { 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 { let app = App::new()?;