about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorYoungsuk Kim <joseph942010@gmail.com>2020-02-29 00:55:05 -0500
committerGitHub <noreply@github.com>2020-02-29 00:55:05 -0500
commit6e265c5bc58ddf830445054907c69369d6b84162 (patch)
tree718651080c07e607cdcb82562a4414b8c2e14ed9 /src/liballoc
parentfb46d2b82e9d2cf6b9916b533dafb6b29857eaec (diff)
downloadrust-6e265c5bc58ddf830445054907c69369d6b84162.tar.gz
rust-6e265c5bc58ddf830445054907c69369d6b84162.zip
Remove trailing whitespace
Removed trailing whitespace which caused to fail pretty-check
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 7a0c2c264bf..55b313a9032 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -1472,7 +1472,7 @@ impl<T: Clone> Vec<T> {
     /// difference, with each additional slot filled with `value`.
     /// If `new_len` is less than `len`, the `Vec` is simply truncated.
     ///
-    /// This method requires `T` to implement [`Clone`], 
+    /// This method requires `T` to implement [`Clone`],
     /// in order to be able to clone the passed value.
     /// If you need more flexibility (or want to rely on [`Default`] instead of
     /// [`Clone`]), use [`resize_with`].