Skip to content

Commit

Permalink
This closes #3077
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed May 11, 2017
2 parents ea8116c + 875735a commit f5ace5c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private Top() {
* given {@code Comparator<T>}. The {@code Comparator<T>} must also
* be {@code Serializable}.
*
* <p>If {@code count} {@code <} the number of elements in the
* <p>If {@code count} {@code >} the number of elements in the
* input {@code PCollection}, then all the elements of the input
* {@code PCollection} will be in the resulting
* {@code List}, albeit in sorted order.
Expand Down Expand Up @@ -110,7 +110,7 @@ Combine.Globally<T, List<T>> of(int count, ComparatorT compareFn) {
* {@code PCollection<T>}, in increasing order, sorted according to
* their natural order.
*
* <p>If {@code count} {@code <} the number of elements in the
* <p>If {@code count} {@code >} the number of elements in the
* input {@code PCollection}, then all the elements of the input
* {@code PCollection} will be in the resulting {@code PCollection}'s
* {@code List}, albeit in sorted order.
Expand Down Expand Up @@ -154,7 +154,7 @@ public static <T extends Comparable<T>> Combine.Globally<T, List<T>> smallest(in
* {@code PCollection<T>}, in decreasing order, sorted according to
* their natural order.
*
* <p>If {@code count} {@code <} the number of elements in the
* <p>If {@code count} {@code >} the number of elements in the
* input {@code PCollection}, then all the elements of the input
* {@code PCollection} will be in the resulting {@code PCollection}'s
* {@code List}, albeit in sorted order.
Expand Down

0 comments on commit f5ace5c

Please sign in to comment.