diff --git a/library/core/src/ops/control_flow.rs b/library/core/src/ops/control_flow.rs index d46ed0f84855b..17794eb7ba5ad 100644 --- a/library/core/src/ops/control_flow.rs +++ b/library/core/src/ops/control_flow.rs @@ -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