]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/option.rs
Merge branch 'master' into copied
[rust.git] / src / libcore / option.rs
index 67bed63e6ff08b0b12ad39b05a911f64e28f94ea..3147b21f86b633bff682486d5e69b0a1e137b70d 100644 (file)
@@ -62,7 +62,7 @@
 //! The following example uses [`Option`] to create an optional box of
 //! [`i32`]. Notice that in order to use the inner [`i32`] value first, the
 //! `check_optional` function needs to use pattern matching to
-//! determine whether the box has a value (i.e. it is [`Some(...)`][`Some`]) or
+//! determine whether the box has a value (i.e., it is [`Some(...)`][`Some`]) or
 //! not ([`None`]).
 //!
 //! ```