Skip to content

Commit

Permalink
missing space in toString
Browse files Browse the repository at this point in the history
Co-authored-by: Efnilite <[email protected]>
  • Loading branch information
UnderscoreTud and Efnilite authored Nov 8, 2024
1 parent a5c8109 commit ad1bdc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public Class<? extends String> getReturnType() {
public String toString(@Nullable Event event, boolean debug) {
StringBuilder builder = new StringBuilder();
if (join) {
builder.append("join").append(strings.toString(event, debug));
builder.append("join ").append(strings.toString(event, debug));
if (delimiter != null)
builder.append(" with ").append(delimiter.toString(event, debug));
return builder.toString();
Expand Down

0 comments on commit ad1bdc1

Please sign in to comment.