[docs] Fix logic inversion in on_manual doc comment

This commit is contained in:
Félix Saparelli 2019-01-27 10:24:24 +13:00
parent b5afcd58ae
commit 4ceb70f6bf
1 changed files with 2 additions and 2 deletions

View File

@ -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<bool>;
/// Called through a file-update request.