Skip to content

Commit 5f3e7de

Browse files
committed
fix formatting
1 parent 432ac30 commit 5f3e7de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/formatting/formatting.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ module ts.formatting {
419419
// if node is located on the same line with the parent
420420
// - inherit indentation from the parent
421421
// - push children if either parent of node itself has non-zero delta
422-
indentation = startLine === lastIndentedLine
422+
indentation = startLine === lastIndentedLine
423423
? indentationOnLastIndentedLine
424424
: parentDynamicIndentation.getIndentation();
425425
delta = Math.min(options.IndentSize, parentDynamicIndentation.getDelta() + delta);

0 commit comments

Comments
 (0)