Skip to content

Commit c0eeafb

Browse files
author
Yui T
committed
Update comments
1 parent 8f4ee91 commit c0eeafb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/services.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,8 +1710,8 @@ module ts {
17101710
// not be accessed with a dot (a.1 <- invalid)
17111711
var firstCharCode = symbol.name.charCodeAt(0);
17121712
if ((symbol.flags & SymbolFlags.Namespace) && (firstCharCode === CharacterCodes.singleQuote || firstCharCode === CharacterCodes.doubleQuote)) {
1713-
// If the symbol is external module, don't retry the completion list
1714-
// Also name of modules is invalid in completion list (i.e declare module "http" { var x; } | // <= request completion here, "http" should not be there)
1713+
// If the symbol is external module, don't show it in the completion list
1714+
// (i.e declare module "http" { var x; } | // <= request completion here, "http" should not be there)
17151715
return undefined;
17161716
}
17171717

0 commit comments

Comments
 (0)