8235730: Incorrect javadoc in MatchKind

Reviewed-by: martin, prappo
This commit is contained in:
Almaz Mingaleev 2019-12-10 15:50:12 -08:00 committed by Arthur Eubanks
parent 67cea3ea02
commit d3f7666418

View file

@ -48,10 +48,10 @@ final class MatchOps {
* match.
*/
enum MatchKind {
/** Do all elements match the predicate? */
/** Do any elements match the predicate? */
ANY(true, true),
/** Do any elements match the predicate? */
/** Do all elements match the predicate? */
ALL(false, false),
/** Do no elements match the predicate? */