Rollup merge of #81589 - Seppel3210:master, r=jonas-schievink

Fix small typo in string.rs
This commit is contained in:
Jonas Schievink 2021-01-31 16:36:56 +01:00 committed by GitHub
commit 600b2d3e5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -972,7 +972,7 @@ pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>
self.vec.try_reserve(additional)
}
/// Tries to reserves the minimum capacity for exactly `additional` more elements to
/// Tries to reserve the minimum capacity for exactly `additional` more elements to
/// be inserted in the given `String`. After calling `reserve_exact`,
/// capacity will be greater than or equal to `self.len() + additional`.
/// Does nothing if the capacity is already sufficient.