@@ -896,9 +896,9 @@ unsafe impl<A> TrustedLen for Item<A> {}
896
896
897
897
/// An iterator over a reference to the [`Some`] variant of an [`Option`].
898
898
///
899
- /// The iterator yields one value if the [`Option`] is a [`Some`] variant , otherwise none.
899
+ /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
900
900
///
901
- /// This `struct` is created by [`Option::iter`] function.
901
+ /// This `struct` is created by the [`Option::iter`] function.
902
902
///
903
903
/// [`Option`]: enum.Option.html
904
904
/// [`Some`]: enum.Option.html#variant.Some
@@ -941,9 +941,9 @@ impl<'a, A> Clone for Iter<'a, A> {
941
941
942
942
/// An iterator over a mutable reference to the [`Some`] variant of an [`Option`].
943
943
///
944
- /// The iterator yields one value if the [`Option`] is a [`Some`] variant , otherwise none.
944
+ /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
945
945
///
946
- /// This `struct` is created by [`Option::iter_mut`] function.
946
+ /// This `struct` is created by the [`Option::iter_mut`] function.
947
947
///
948
948
/// [`Option`]: enum.Option.html
949
949
/// [`Some`]: enum.Option.html#variant.Some
@@ -978,9 +978,9 @@ unsafe impl<'a, A> TrustedLen for IterMut<'a, A> {}
978
978
979
979
/// An iterator over the value in [`Some`] variant of an [`Option`].
980
980
///
981
- /// The iterator yields one value if the [`Option`] is a [`Some`] variant , otherwise none.
981
+ /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
982
982
///
983
- /// This `struct` is created by [`Option::into_iter`] function.
983
+ /// This `struct` is created by the [`Option::into_iter`] function.
984
984
///
985
985
/// [`Option`]: enum.Option.html
986
986
/// [`Some`]: enum.Option.html#variant.Some
0 commit comments