Skip to content

Commit fd555dc

Browse files
committed
bug fix
1 parent c446965 commit fd555dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/tang/intellij/lua/codeInsight/LuaParameterInfoHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public void updateUI(LuaFuncBodyOwner o, @NotNull ParameterInfoUIContext context
120120
sb.append(" : ");
121121
for (int j = 0; j < types.length; j++) {
122122
if (j > 0) sb.append("|");
123-
sb.append(types[i]);
123+
sb.append(types[j]);
124124
}
125125
}
126126

0 commit comments

Comments
 (0)