Skip to content

Commit

Permalink
Rollup merge of #81589 - Seppel3210:master, r=jonas-schievink
Browse files Browse the repository at this point in the history
Fix small typo in string.rs
  • Loading branch information
jonas-schievink committed Jan 31, 2021
2 parents 36af32a + 6695690 commit 600b2d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/alloc/src/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ impl String {
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.
Expand Down

0 comments on commit 600b2d3

Please sign in to comment.