std: Typo fix in docs.

This commit is contained in:
Lindsey Kuper 2012-06-07 11:45:59 -07:00
parent 9105cb6d5d
commit d8d76738ec

View file

@ -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);