Skip to content

Fix typo: is -> if #291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 28, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion overviews/collections/trait-traversable.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ The `foreach` method is meant to traverse all elements of the collection, and ap
| `xs.headOption` |The first element of `xs` in an option value, or None if `xs` is empty.|
| `xs.last` |The last element of the collection (or, some element, if no order is defined).|
| `xs.lastOption` |The last element of `xs` in an option value, or None if `xs` is empty.|
| `xs find p` |An option containing the first element in `xs` that satisfies `p`, or `None` is no element qualifies.|
| `xs find p` |An option containing the first element in `xs` that satisfies `p`, or `None` if no element qualifies.|
| **Subcollections:** | |
| `xs.tail` |The rest of the collection except `xs.head`. |
| `xs.init` |The rest of the collection except `xs.last`. |
Expand Down