We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1804964 commit cb65b48Copy full SHA for cb65b48
library/core/src/option.rs
@@ -50,8 +50,8 @@
50
//! the optional owned box, [`Option`]`<`[`Box<T>`]`>`.
51
//!
52
//! The following example uses [`Option`] to create an optional box of
53
-//! [`i32`]. Notice that in order to use the inner [`i32`] value first, the
54
-//! `check_optional` function needs to use pattern matching to
+//! [`i32`]. Notice that in order to use the inner [`i32`] value, the
+//! `check_optional` function first needs to use pattern matching to
55
//! determine whether the box has a value (i.e., it is [`Some(...)`][`Some`]) or
56
//! not ([`None`]).
57
0 commit comments