From 022d3a49b9e677a60e5cefed38365dc667e4cb28 Mon Sep 17 00:00:00 2001 From: Sam Zaydel Date: Mon, 18 Mar 2019 07:03:59 -0700 Subject: [PATCH] Extra 'not' in sentence in Trait Traversable --- _overviews/FAQ/collections.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_overviews/FAQ/collections.md b/_overviews/FAQ/collections.md index 65f9f3d5a1..b044191727 100644 --- a/_overviews/FAQ/collections.md +++ b/_overviews/FAQ/collections.md @@ -171,8 +171,8 @@ Traversible objects can be finite or infinite. An example of an infinite traversable object is the stream of natural numbers `Stream.from(0)`. The method `hasDefiniteSize` indicates whether a collection is possibly infinite. If `hasDefiniteSize` returns true, the collection is certainly finite. If it -returns false, the collection has not been not fully elaborated yet, so it -might be infinite or finite. +returns false, the collection has not been fully elaborated yet, so it might +be infinite or finite. This class defines methods which can be efficiently implemented in terms of `foreach` (over 40 of them).