diff --git a/src/libstd/bitv.rs b/src/libstd/bitv.rs index b708ef9d3344..322a23ed53ec 100644 --- a/src/libstd/bitv.rs +++ b/src/libstd/bitv.rs @@ -94,7 +94,7 @@ fn clone(v: bitv) -> bitv { ret @{storage: storage, nbits: v.nbits}; } -#[doc = "Retreive the value at index `i`"] +#[doc = "Retrieve the value at index `i`"] #[inline(always)] pure fn get(v: bitv, i: uint) -> bool { assert (i < v.nbits);