Remove trailing whitespace

Removed trailing whitespace which caused to fail pretty-check
This commit is contained in:
Youngsuk Kim 2020-02-29 00:55:05 -05:00 committed by GitHub
parent fb46d2b82e
commit 6e265c5bc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`].