--- old/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Operators.java 2019-12-20 15:41:05.000000000 +0000 +++ new/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Operators.java 2019-12-20 15:41:05.000000000 +0000 @@ -229,7 +229,7 @@ /** * The constants in this enum represent the types upon which all the operator helpers - * operate upon. This allows lazy and consise mapping between a type name and a type instance. + * operate upon. This allows lazy and concise mapping between a type name and a type instance. */ enum OperatorType { BYTE(syms -> syms.byteType), @@ -280,7 +280,7 @@ /** * This routine implements the main operator lookup process. Each operator is tested - * using an applicability predicate; if the test suceeds that same operator is returned, + * using an applicability predicate; if the test succeeds that same operator is returned, * otherwise a dummy symbol is returned. */ final OperatorSymbol doLookup(Predicate applicabilityTest) {