From c0eeafb0d8ee02e17a47398ced4ee5107543b9cb Mon Sep 17 00:00:00 2001 From: Yui T Date: Tue, 23 Sep 2014 16:59:42 -0700 Subject: [PATCH] Update comments --- src/services/services.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/services.ts b/src/services/services.ts index fc9eb3e722d..c91d2d79f6e 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -1710,8 +1710,8 @@ module ts { // not be accessed with a dot (a.1 <- invalid) var firstCharCode = symbol.name.charCodeAt(0); if ((symbol.flags & SymbolFlags.Namespace) && (firstCharCode === CharacterCodes.singleQuote || firstCharCode === CharacterCodes.doubleQuote)) { - // If the symbol is external module, don't retry the completion list - // Also name of modules is invalid in completion list (i.e declare module "http" { var x; } | // <= request completion here, "http" should not be there) + // If the symbol is external module, don't show it in the completion list + // (i.e declare module "http" { var x; } | // <= request completion here, "http" should not be there) return undefined; }