From 825cd8101835cc7af2036c1a8a5f9febb72f42aa Mon Sep 17 00:00:00 2001 From: Christoph Smithmyer <38911273+chrismit3s@users.noreply.github.com> Date: Sat, 2 Oct 2021 13:16:24 +0200 Subject: [PATCH] Fix typo and change a word in ControlFlow docs Co-authored-by: r00ster --- library/core/src/ops/control_flow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ops/control_flow.rs b/library/core/src/ops/control_flow.rs index d46ed0f8485..17794eb7ba5 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