From e2c9a134d7894555fe781ae11009c953e98b26cd Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Fri, 14 Sep 2018 14:04:10 -0700 Subject: [PATCH] Fix typo in code comment ('minumum') Just fixing a misspelling in a code comment ('minumum' -- first 'u' should be an 'i') --- lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.rs b/lib.rs index 959bbb1..b1cfb37 100644 --- a/lib.rs +++ b/lib.rs @@ -683,7 +683,7 @@ impl SmallVec { } } - /// Reserve the minumum capacity for `additional` more elements to be inserted. + /// Reserve the minimum capacity for `additional` more elements to be inserted. /// /// Panics if the new capacity overflows `usize`. pub fn reserve_exact(&mut self, additional: usize) {