Skip to content

Commit

Permalink
fix: add missing space after comma on call argument
Browse files Browse the repository at this point in the history
  • Loading branch information
zackad committed Dec 3, 2024
1 parent 324000a commit ac06385
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/print/CallExpression.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const p = (node, path, print, options) => {
// there is exactly one object parameter
parts.push(mappedArguments[0], ")");
} else if (options.experimentalMethodChainIndentation) {
parts.push(indent([join([","], mappedArguments)]), ")");
parts.push(indent([join([", "], mappedArguments)]), ")");
} else {
parts.push(
indent([softline, join([",", line], mappedArguments)]),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.setController('App\\Controller\\Dashboard\\CRUD\\TacheCrudController')
.setAction('edit')
.setEntityId(tache.id)
.set('sort',null)
.set('sort', null)
}}">
<i class="fa-solid fa-edit"></i>
</a>

0 comments on commit ac06385

Please sign in to comment.