diff options
| author | Takashi Idobe <idobetakashi@gmail.com> | 2021-09-23 18:20:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-23 18:20:46 -0500 |
| commit | b146525140a8776aec1f7852643ec2abd787a197 (patch) | |
| tree | 699aec7715840e9a84a798255eaa7fbe3b8cf649 | |
| parent | d63e0f0e477654cb39036eb6f8b45e2dd6f4d371 (diff) | |
| download | rust-b146525140a8776aec1f7852643ec2abd787a197.tar.gz rust-b146525140a8776aec1f7852643ec2abd787a197.zip | |
remove trailing whitespace
| -rw-r--r-- | library/alloc/src/collections/linked_list.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/alloc/src/collections/linked_list.rs b/library/alloc/src/collections/linked_list.rs index e98b3270336..dfd0039baf6 100644 --- a/library/alloc/src/collections/linked_list.rs +++ b/library/alloc/src/collections/linked_list.rs @@ -657,7 +657,7 @@ impl<T> LinkedList<T> { /// Provides a reference to the front element, or `None` if the list is /// empty. - /// + /// /// This operation should compute in *O*(*1*) time. /// /// # Examples @@ -679,7 +679,7 @@ impl<T> LinkedList<T> { /// Provides a mutable reference to the front element, or `None` if the list /// is empty. - /// + /// /// This operation should compute in *O*(*1*) time. /// /// # Examples @@ -707,7 +707,7 @@ impl<T> LinkedList<T> { /// Provides a reference to the back element, or `None` if the list is /// empty. - /// + /// /// This operation should compute in *O*(*1*) time. /// /// # Examples @@ -729,7 +729,7 @@ impl<T> LinkedList<T> { /// Provides a mutable reference to the back element, or `None` if the list /// is empty. - /// + /// /// This operation should compute in *O*(*1*) time. /// /// # Examples |
