Skip to content

Commit

Permalink
Fixing double whitespace (#465)
Browse files Browse the repository at this point in the history
closes #461
  • Loading branch information
belav committed Nov 10, 2021
1 parent c07a4c5 commit 67cd8b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ class ClassName
longerValueThatMakesItBreak______________________
},
};

var emptyInitializer = new SomeObject[] { };
}

private SomeObject someObject =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static Doc Print(InitializerExpressionSyntax node)
Doc.Line,
SeparatedSyntaxList.Print(node.Expressions, Node.Print, Doc.Line)
),
Doc.Line,
node.Expressions.Any() ? Doc.Line : Doc.Null,
Token.Print(node.CloseBraceToken)
);
return
Expand Down

0 comments on commit 67cd8b3

Please sign in to comment.