From dd6987cc0f8b339bafccbdd350173820a7ccd952 Mon Sep 17 00:00:00 2001 From: Brian Takashi Hooper Date: Tue, 28 Jan 2014 20:31:55 +0900 Subject: [PATCH] Fix typo: is -> if --- overviews/collections/trait-traversable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviews/collections/trait-traversable.md b/overviews/collections/trait-traversable.md index deec3c3865..9f92971ec9 100644 --- a/overviews/collections/trait-traversable.md +++ b/overviews/collections/trait-traversable.md @@ -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`. |