Skip to content

Commit 31b19d2

Browse files
authored
Fix spelling typo
1 parent 32d0cfa commit 31b19d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/compiler/binder-symboltable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function declareSymbol(symbolTable: SymbolTable, parent: Symbol, node: Declarati
100100
}
101101
```
102102

103-
Which SymbolTable is populated is driven by the first argument to this function. e.g. when adding a declaration to a *container* of kind `SyntaxKind.ClassDeclaration` or `SytanxKind.ClassExpression` the function `declareClassMember` will get called which has the following code:
103+
Which SymbolTable is populated is driven by the first argument to this function. e.g. when adding a declaration to a *container* of kind `SyntaxKind.ClassDeclaration` or `SyntaxKind.ClassExpression` the function `declareClassMember` will get called which has the following code:
104104

105105
```ts
106106
function declareClassMember(node: Declaration, symbolFlags: SymbolFlags, symbolExcludes: SymbolFlags) {

0 commit comments

Comments
 (0)