Skip to content

Commit 896e576

Browse files
committed
fix typo
1 parent 20cc428 commit 896e576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/binder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ namespace ts {
13141314

13151315
function bindJSDocTypedefTag(node: JSDocTypedefTag) {
13161316
forEachChild(node, n => {
1317-
// if the node has a fullName "A.B.C", that means symbol "C" was already bond
1317+
// if the node has a fullName "A.B.C", that means symbol "C" was already bound
13181318
// when we visit "fullName"; so when we visit the name "C" as the next child of
13191319
// the jsDocTypedefTag, we should skip binding it.
13201320
if (n === node.name && node.fullName.kind !== SyntaxKind.Identifier) {

0 commit comments

Comments
 (0)