Skip to content

Commit dd6987c

Browse files
committed
Fix typo: is -> if
1 parent fb6d3e8 commit dd6987c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overviews/collections/trait-traversable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The `foreach` method is meant to traverse all elements of the collection, and ap
6767
| `xs.headOption` |The first element of `xs` in an option value, or None if `xs` is empty.|
6868
| `xs.last` |The last element of the collection (or, some element, if no order is defined).|
6969
| `xs.lastOption` |The last element of `xs` in an option value, or None if `xs` is empty.|
70-
| `xs find p` |An option containing the first element in `xs` that satisfies `p`, or `None` is no element qualifies.|
70+
| `xs find p` |An option containing the first element in `xs` that satisfies `p`, or `None` if no element qualifies.|
7171
| **Subcollections:** | |
7272
| `xs.tail` |The rest of the collection except `xs.head`. |
7373
| `xs.init` |The rest of the collection except `xs.last`. |

0 commit comments

Comments
 (0)