From e1611dde58284e9fe2b1678d8a97a5ecb759cca5 Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Tue, 5 Nov 2024 11:05:52 -0800 Subject: [PATCH] comment tweaks --- .../java/com/uber/nullaway/generics/GenericsChecks.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nullaway/src/main/java/com/uber/nullaway/generics/GenericsChecks.java b/nullaway/src/main/java/com/uber/nullaway/generics/GenericsChecks.java index b69380fd63..8953edef34 100644 --- a/nullaway/src/main/java/com/uber/nullaway/generics/GenericsChecks.java +++ b/nullaway/src/main/java/com/uber/nullaway/generics/GenericsChecks.java @@ -592,10 +592,10 @@ public static void checkTypeParameterNullnessForConditionalExpression( } /** - * Checks that for each parameter p at a call, the type parameter nullability for p's type matches - * that of the corresponding formal parameter. If a mismatch is found, report an error. + * Checks that for each actual parameter p at a call, the type parameter nullability for p's type + * matches that of the corresponding formal parameter. If a mismatch is found, report an error. * - * @param tree the tree to get substituted types + * @param tree the tree corresponding to the method invocation * @param methodSymbol symbol for the invoked method * @param formalParams the formal parameters * @param actualParams the actual parameters