We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cc428 commit 896e576Copy full SHA for 896e576
src/compiler/binder.ts
@@ -1314,7 +1314,7 @@ namespace ts {
1314
1315
function bindJSDocTypedefTag(node: JSDocTypedefTag) {
1316
forEachChild(node, n => {
1317
- // 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
1318
// when we visit "fullName"; so when we visit the name "C" as the next child of
1319
// the jsDocTypedefTag, we should skip binding it.
1320
if (n === node.name && node.fullName.kind !== SyntaxKind.Identifier) {
0 commit comments