From 6b33dda121e98b9b64e5d04f5f5828c4cddb5168 Mon Sep 17 00:00:00 2001 From: sisisin Date: Wed, 19 Jun 2019 19:08:01 +0900 Subject: [PATCH] chore(tsserver): fix typo --- src/services/importTracker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/importTracker.ts b/src/services/importTracker.ts index 2734d059000..7724292d444 100644 --- a/src/services/importTracker.ts +++ b/src/services/importTracker.ts @@ -434,7 +434,7 @@ namespace ts.FindAllReferences { /** * Given a local reference, we might notice that it's an import/export and recursively search for references of that. * If at an import, look locally for the symbol it imports. - * If an an export, look for all imports of it. + * If at an export, look for all imports of it. * This doesn't handle export specifiers; that is done in `getReferencesAtExportSpecifier`. * @param comingFromExport If we are doing a search for all exports, don't bother looking backwards for the imported symbol, since that's the reason we're here. */