Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AyhamAl-Ali committed Mar 31, 2024
1 parent c63e88b commit 4c8b2e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/doc/HTMLGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ public static String introduceSkwipt(String string) {
}

public static String[] introduceSkwipt(String[] string) {
for (int i = 0; i < string.length; i++) {
for (int i = 0; i < (string != null ? string.length : 0); i++) {
string[i] = introduceSkwipt(string[i]);
}
return string;
Expand Down

0 comments on commit 4c8b2e5

Please sign in to comment.