--- old/src/java.base/share/classes/java/util/stream/MatchOps.java 2019-12-10 15:50:40.482556126 -0800 +++ new/src/java.base/share/classes/java/util/stream/MatchOps.java 2019-12-10 15:50:40.266557772 -0800 @@ -48,10 +48,10 @@ * 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? */