Skip to content

Commit

Permalink
auto merge of #12131 : brunoabinader/rust/list-find-doc-typo, r=alexc…
Browse files Browse the repository at this point in the history
…richton

Replace ```v``` with ```ls```.
  • Loading branch information
bors committed Feb 10, 2014
2 parents cf243f9 + 66c036c commit d0affa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn foldl<T:Clone,U>(z: T, ls: @List<U>, f: |&T, &U| -> T) -> T {
/**
* Search for an element that matches a given predicate
*
* Apply function `f` to each element of `v`, starting from the first.
* Apply function `f` to each element of `ls`, starting from the first.
* When function `f` returns true then an option containing the element
* is returned. If `f` matches no elements then none is returned.
*/
Expand Down

0 comments on commit d0affa5

Please sign in to comment.