Skip to content

Commit b146525

Browse files
authored
remove trailing whitespace
1 parent d63e0f0 commit b146525

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/alloc/src/collections/linked_list.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)