Skip to content

Commit cb7fc72

Browse files
authored
Rollup merge of rust-lang#41019 - mandeep:fix-vec-swapremove-docs, r=BurntSushi
Fixed typo in doc comments for swap_remove While reading the Vec docs, I came across the docs for swap_remove. I believe there is a typo in the comment and ```return``` should be ```returns```. This PR fixes this issue. I also feel that the entire doc comment is a bit of a run-on and could be changed to something along the lines of ```Removes an element from anywhere in the vector and returns it. The vector is mutated and the removed element is replaced by the last element of the vector. ``` Thoughts?
2 parents d0df64e + 5787808 commit cb7fc72

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libcollections/vec.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -678,8 +678,9 @@ impl<T> Vec<T> {
678678
self.len = len;
679679
}
680680

681-
/// Removes an element from anywhere in the vector and return it, replacing
682-
/// it with the last element.
681+
/// Removes an element from the vector and returns it.
682+
///
683+
/// The removed element is replaced by the last element of the vector.
683684
///
684685
/// This does not preserve ordering, but is O(1).
685686
///

0 commit comments

Comments
 (0)