about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authordylan_DPC <dylan.dpc@gmail.com>2020-01-05 00:00:40 +0530
committerdylan_DPC <dylan.dpc@gmail.com>2020-01-05 00:00:40 +0530
commit358b8983f2aae3dc8d2d08189eea8fd41898bb41 (patch)
treeb0dff0d21f24ead751f32c2682f090acc34b55a4 /src/liballoc
parentf744ea03b46e860decb8672dc032805cbf9df652 (diff)
downloadrust-358b8983f2aae3dc8d2d08189eea8fd41898bb41.tar.gz
rust-358b8983f2aae3dc8d2d08189eea8fd41898bb41.zip
removed blank line
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 9b48c21728a..a27a13847d6 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -1703,7 +1703,6 @@ impl<T> Vec<T> {
     ///
     /// assert_eq!(vec, vec![2, 3, 1]);
     /// ```
-
     #[unstable(feature = "vec_remove_item", reason = "recently added", issue = "40062")]
     pub fn remove_item<V>(&mut self, item: &V) -> Option<T>
     where