Skip to content

Commit

Permalink
Add space in events statement formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhian committed Oct 12, 2022
1 parent 0d9deda commit 034e9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders/event-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
builder.push("\n");
builder.push(`event ${node.name}(`);
parameterList.length > 1 ?
builder.push("\n" + parameterList.join("\n ") + "\n") :
builder.push("\n " + parameterList.join("\n ") + "\n") :
builder.push(parameterList.join(", "))
builder.push(")");
builder.push("\n");
Expand Down

0 comments on commit 034e9c9

Please sign in to comment.