From 4ceb70f6bf2af1ab3abf682e2a6c00045623e946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 27 Jan 2019 10:24:24 +1300 Subject: [PATCH] [docs] Fix logic inversion in on_manual doc comment --- src/run.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/run.rs b/src/run.rs index e3eff57..439ebff 100644 --- a/src/run.rs +++ b/src/run.rs @@ -47,8 +47,8 @@ pub trait Handler { /// A `Result` which means: /// /// - `Err`: an error has occurred while processing, quit. - /// - `Ok(false)`: everything is fine and the loop can continue. - /// - `Ok(true)`: everything is fine but we should gracefully stop. + /// - `Ok(true)`: everything is fine and the loop can continue. + /// - `Ok(false)`: everything is fine but we should gracefully stop. fn on_manual(&mut self) -> Result; /// Called through a file-update request.