File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
library/alloc/src/collections Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -657,7 +657,7 @@ impl<T> LinkedList<T> {
657657
658658 /// Provides a reference to the front element, or `None` if the list is
659659 /// empty.
660- ///
660+ ///
661661 /// This operation should compute in *O*(*1*) time.
662662 ///
663663 /// # Examples
@@ -679,7 +679,7 @@ impl<T> LinkedList<T> {
679679
680680 /// Provides a mutable reference to the front element, or `None` if the list
681681 /// is empty.
682- ///
682+ ///
683683 /// This operation should compute in *O*(*1*) time.
684684 ///
685685 /// # Examples
@@ -707,7 +707,7 @@ impl<T> LinkedList<T> {
707707
708708 /// Provides a reference to the back element, or `None` if the list is
709709 /// empty.
710- ///
710+ ///
711711 /// This operation should compute in *O*(*1*) time.
712712 ///
713713 /// # Examples
@@ -729,7 +729,7 @@ impl<T> LinkedList<T> {
729729
730730 /// Provides a mutable reference to the back element, or `None` if the list
731731 /// is empty.
732- ///
732+ ///
733733 /// This operation should compute in *O*(*1*) time.
734734 ///
735735 /// # Examples
You can’t perform that action at this time.
0 commit comments