summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authormandeep <mandeep@users.noreply.github.com>2017-04-03 15:48:12 -0500
committermandeep <mandeep@users.noreply.github.com>2017-04-03 15:48:12 -0500
commit5787808d07b27d12a397cd20bd630a2ed1f35ca2 (patch)
tree875efef6544177c7ccbf8927dc47e231cdc354be /src/libcollections
parentf74ca38686e84542657136bd063f8042d9bbb641 (diff)
downloadrust-5787808d07b27d12a397cd20bd630a2ed1f35ca2.tar.gz
rust-5787808d07b27d12a397cd20bd630a2ed1f35ca2.zip
Removed trailing whitespace on line 682
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs
index 8a3fa94d4c1..be613e06b02 100644
--- a/src/libcollections/vec.rs
+++ b/src/libcollections/vec.rs
@@ -679,7 +679,7 @@ impl<T> Vec<T> {
     }
 
     /// Removes an element from the vector and returns it.
-    /// 
+    ///
     /// The removed element is replaced by the last element of the vector.
     ///
     /// This does not preserve ordering, but is O(1).