Skip to content

Commit

Permalink
Fix accidental underscore. (#7354)
Browse files Browse the repository at this point in the history
Remove underscore.

---------

Co-authored-by: sovdee <10354869+sovdeeth@users.noreply.github.com>
  • Loading branch information
Moderocky and sovdeeth authored Jan 1, 2025
1 parent a0dc7b4 commit e17b864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ch/njol/skript/test/runner/TestFunctions.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String[] executeSimple(Object[][] params) {
Returns the real (platform-dependent) line separator:
typically line feed for UN*X or carriage return line feed for Windows.""")
.examples("broadcast \"hello\" + line_separator() + \"world\"")
.since("INSERT_VERSION"));
.since("INSERT VERSION"));

Functions.registerFunction(new SimpleJavaFunction<>("file_separator", new Parameter[0],
DefaultClasses.STRING, true) {
Expand All @@ -59,7 +59,7 @@ public String[] executeSimple(Object[][] params) {
}
}.description("Returns the real (platform-dependent) file separator: typically / for UN*X or \\ for Windows.")
.examples("file_separator() = \"/\"")
.since("INSERT_VERSION"));
.since("INSERT VERSION"));

}

Expand Down

0 comments on commit e17b864

Please sign in to comment.