Skip to content

Commit

Permalink
Update src/nodes/UsingForDeclaration.js
Browse files Browse the repository at this point in the history
Co-authored-by: Franco Victorio <victorio.franco@gmail.com>
  • Loading branch information
Janther and fvictorio committed May 26, 2022
1 parent 8f504ee commit 75db84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/UsingForDeclaration.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const printSeparatedList = require('./print-separated-list');
const UsingForDeclaration = {
print: ({ node, path, print, options }) => [
'using ',
node.functions && node.functions.length
node.functions
? [
'{',
printSeparatedList(node.functions, {
Expand Down

0 comments on commit 75db84b

Please sign in to comment.