From 6e265c5bc58ddf830445054907c69369d6b84162 Mon Sep 17 00:00:00 2001 From: Youngsuk Kim Date: Sat, 29 Feb 2020 00:55:05 -0500 Subject: [PATCH] Remove trailing whitespace Removed trailing whitespace which caused to fail pretty-check --- src/liballoc/vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 Vec { /// 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`].