Skip to content

Commit 0bb1b40

Browse files
Update src/services/formatting/smartIndenter.ts
Co-Authored-By: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
1 parent 2e435ae commit 0bb1b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/formatting/smartIndenter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ namespace ts.formatting {
327327
if (isCallOrNewExpression(parent)) {
328328
if (!parent.arguments) return false;
329329
const currentNode = find(parent.arguments, arg => arg.pos === child.pos);
330-
// If its not one of the argument, dont look past this
330+
// If it's not one of the arguments, don't look past this
331331
if (!currentNode) return false;
332332
const currentIndex = parent.arguments.indexOf(currentNode);
333333
if (currentIndex === 0) return false; // Can't look at previous node if first

0 commit comments

Comments
 (0)