--- old/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ArgumentAttr.java 2019-12-20 15:40:57.000000000 +0000 +++ new/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ArgumentAttr.java 2019-12-20 15:40:56.000000000 +0000 @@ -91,7 +91,7 @@ * type, so that enclosing overload resolution can be carried by simply checking compatibility against the * type determined during this speculative pass. * - * - if A is a standalone expression, regular atributtion takes place. + * - if A is a standalone expression, regular attribution takes place. * * To minimize the speculative work, a cache is used, so that already computed argument types * associated with a given unique source location are never recomputed multiple times. @@ -112,7 +112,7 @@ /** Result of method attribution. */ Type result; - /** Cache for argument types; behavior is influences by the currrently selected cache policy. */ + /** Cache for argument types; behavior is influences by the currently selected cache policy. */ Map> argumentTypeCache = new LinkedHashMap<>(); public static ArgumentAttr instance(Context context) {