Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kunli2 committed Nov 1, 2023
1 parent 9162f89 commit 9eb0364
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ private static String printConeKotlinType(ConeTypeProjection coneKotlinType) {
if (typeArguments != null && typeArguments.length > 0) {
sb.append(" typeArgument: ");
for (int i = 0; i < typeArguments.length; i++) {
sb.append(printConeKotlinType(typeArguments[0]));
sb.append(printConeKotlinType(typeArguments[i]));
}
}
}
Expand Down

0 comments on commit 9eb0364

Please sign in to comment.