Merge pull request #2 from ben0x539/patch-1

Tiny typo of "positive"
This commit is contained in:
Alexis Beingessner 2015-06-21 09:11:03 -07:00
commit 2d5c1bbee0

View file

@ -230,7 +230,7 @@ struct Vec<T> {
}
// Note this implementation does not correctly handle zero-sized types.
// We currently live in a nice imaginary world of only postive fixed-size
// We currently live in a nice imaginary world of only positive fixed-size
// types.
impl<T> Vec<T> {
fn push(&mut self, elem: T) {