From 70cb7582047bb7a73e4d9c4e81f90e6c093730bf Mon Sep 17 00:00:00 2001 From: SaschaNaz Date: Fri, 11 Sep 2015 14:26:10 +0900 Subject: [PATCH] making comment more specific --- src/services/formatting/smartIndenter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/formatting/smartIndenter.ts b/src/services/formatting/smartIndenter.ts index 982a6dc5394..2720ae0b6d3 100644 --- a/src/services/formatting/smartIndenter.ts +++ b/src/services/formatting/smartIndenter.ts @@ -485,7 +485,7 @@ namespace ts.formatting { } /** - * Function returns true if a node should not get additional indentation in its parent node. + * Function returns true if existing node content indentation should be suppressed for a specific child */ export function shouldInheritParentIndentation(parent: TextRangeWithKind, child: TextRangeWithKind) { return !nodeWillIndentChild(parent, child, true);