about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTakashi Idobe <idobetakashi@gmail.com>2021-09-23 18:20:46 -0500
committerGitHub <noreply@github.com>2021-09-23 18:20:46 -0500
commitb146525140a8776aec1f7852643ec2abd787a197 (patch)
tree699aec7715840e9a84a798255eaa7fbe3b8cf649
parentd63e0f0e477654cb39036eb6f8b45e2dd6f4d371 (diff)
downloadrust-b146525140a8776aec1f7852643ec2abd787a197.tar.gz
rust-b146525140a8776aec1f7852643ec2abd787a197.zip
remove trailing whitespace
-rw-r--r--library/alloc/src/collections/linked_list.rs8
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