We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081fe30 commit 825cd81Copy full SHA for 825cd81
library/core/src/ops/control_flow.rs
@@ -8,7 +8,7 @@ use crate::{convert, ops};
8
/// mean again?" -- and allows including a value.
9
///
10
/// Similar to [`Option`] and [`Result`], this enum can be used with the `?` operator
11
-/// 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
12
/// with the value inside the [`Continue`] variant.
13
14
/// # Examples
0 commit comments