Skip to content

Extra 'not' in sentence in Trait Traversable #1302

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
Apr 1, 2019
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
4 changes: 2 additions & 2 deletions _overviews/FAQ/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down