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> {
657
657
658
658
/// Provides a reference to the front element, or `None` if the list is
659
659
/// empty.
660
- ///
660
+ ///
661
661
/// This operation should compute in *O*(*1*) time.
662
662
///
663
663
/// # Examples
@@ -679,7 +679,7 @@ impl<T> LinkedList<T> {
679
679
680
680
/// Provides a mutable reference to the front element, or `None` if the list
681
681
/// is empty.
682
- ///
682
+ ///
683
683
/// This operation should compute in *O*(*1*) time.
684
684
///
685
685
/// # Examples
@@ -707,7 +707,7 @@ impl<T> LinkedList<T> {
707
707
708
708
/// Provides a reference to the back element, or `None` if the list is
709
709
/// empty.
710
- ///
710
+ ///
711
711
/// This operation should compute in *O*(*1*) time.
712
712
///
713
713
/// # Examples
@@ -729,7 +729,7 @@ impl<T> LinkedList<T> {
729
729
730
730
/// Provides a mutable reference to the back element, or `None` if the list
731
731
/// is empty.
732
- ///
732
+ ///
733
733
/// This operation should compute in *O*(*1*) time.
734
734
///
735
735
/// # Examples
You can’t perform that action at this time.
0 commit comments