Skip to content

Commit

Permalink
Fixed a typo in list's find() documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoabinader committed Feb 9, 2014
1 parent 2780d9d commit 66c036c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/list.rs
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

5 comments on commit 66c036c

@bors
Copy link
Contributor

@bors bors commented on 66c036c Feb 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 66c036c Feb 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging brunoabinader/rust/list-find-doc-typo = 66c036c into auto

@bors
Copy link
Contributor

@bors bors commented on 66c036c Feb 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

brunoabinader/rust/list-find-doc-typo = 66c036c merged ok, testing candidate = d0affa5

@bors
Copy link
Contributor

@bors bors commented on 66c036c Feb 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 66c036c Feb 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = d0affa5

Please sign in to comment.