Fix error_handlers.rs

This commit is contained in:
Temirkhan Myrzamadi 2019-12-31 01:42:31 +06:00
parent d73eecca36
commit 05f8ff13da

View file

@ -59,7 +59,7 @@ impl<E> ErrorHandler<E> for Ignore {
/// Err(inf) => IgnoreSafe.handle_error(inf).await,
/// }
///
/// IgnoreSafe.handle_error(return;).await; // return type of `return` is `!` (aka never)
/// IgnoreSafe.handle_error(return).await; // return type of `return` is `!` (aka never)
/// # }
/// ```
///