Skip to content

Commit

Permalink
fix for #10 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfekete authored and akarnokd committed Dec 29, 2016
1 parent 7cc0b84 commit 10f4824
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ix/Ix.java
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,7 @@ public final Ix<T> takeLast(int n) {
}

/**
* Take elements from this sequence while the given predicate returns true
* Take elements from this sequence until the given predicate returns true
* for the current element (checked after emission of that element).
* <p>
* The result's Iterator forwards calls of remove() to this' Iterator.
Expand All @@ -1978,7 +1978,7 @@ public final Ix<T> takeUntil(IxPredicate<? super T> stopPredicate) {
}

/**
* Take elements from this sequence until the given predicate returns true
* Take elements from this sequence while the given predicate returns true
* for the current element (checked before emission of that element).
* <p>
* The result's Iterator forwards calls of remove() to this' Iterator.
Expand Down

0 comments on commit 10f4824

Please sign in to comment.