Fix typo and change a word in ControlFlow docs

Co-authored-by: r00ster <r00ster91@protonmail.com>
This commit is contained in:
Christoph Smithmyer 2021-10-02 13:16:24 +02:00 committed by GitHub
parent 081fe300e7
commit 825cd81018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ use crate::{convert, ops};
/// mean again?" -- and allows including a value.
///
/// Similar to [`Option`] and [`Result`], this enum can be used with the `?` operator
/// to return immediatly if the [`Break`] variant is present or to continue normally
/// to return immediately if the [`Break`] variant is present or otherwise continue normally
/// with the value inside the [`Continue`] variant.
///
/// # Examples