From 896e576374f3bbbb2e1781773664591608425af2 Mon Sep 17 00:00:00 2001 From: Zhengbo Li Date: Thu, 16 Feb 2017 13:17:42 -0800 Subject: [PATCH] fix typo --- src/compiler/binder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/binder.ts b/src/compiler/binder.ts index 446fadcc3b4..493101f1688 100644 --- a/src/compiler/binder.ts +++ b/src/compiler/binder.ts @@ -1314,7 +1314,7 @@ namespace ts { function bindJSDocTypedefTag(node: JSDocTypedefTag) { forEachChild(node, n => { - // if the node has a fullName "A.B.C", that means symbol "C" was already bond + // if the node has a fullName "A.B.C", that means symbol "C" was already bound // when we visit "fullName"; so when we visit the name "C" as the next child of // the jsDocTypedefTag, we should skip binding it. if (n === node.name && node.fullName.kind !== SyntaxKind.Identifier) {