Skip to content

Commit d8d7673

Browse files
committed
std: Typo fix in docs.
1 parent 9105cb6 commit d8d7673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/bitv.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ fn clone(v: bitv) -> bitv {
9494
ret @{storage: storage, nbits: v.nbits};
9595
}
9696

97-
#[doc = "Retreive the value at index `i`"]
97+
#[doc = "Retrieve the value at index `i`"]
9898
#[inline(always)]
9999
pure fn get(v: bitv, i: uint) -> bool {
100100
assert (i < v.nbits);

0 commit comments

Comments
 (0)