Skip to content

Commit f3278e2

Browse files
author
Arthur Ozga
committed
fixed a grammatical issue
1 parent 9e1ab92 commit f3278e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/binder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ module ts {
166166
}
167167

168168
/**
169-
* Declares a Symbol for the Node and add it to symbols. Reports errors for conflicting identifier names.
169+
* Declares a Symbol for the node and adds it to symbols. Reports errors for conflicting identifier names.
170170
* @param symbolTable - The symbol table which node will be added to.
171171
* @param parent - If node is in a class, parent denotes the parent declaration.
172172
* @param node - The declaration to be added to the symbol table
@@ -185,7 +185,7 @@ module ts {
185185
// Check and see if the symbol table already has a symbol with this name. If not,
186186
// create a new symbol with this name and add it to the table. Note that we don't
187187
// give the new symbol any flags *yet*. This ensures that it will not conflict
188-
// witht he 'excludes' flags we pass in.
188+
// with the 'excludes' flags we pass in.
189189
//
190190
// If we do get an existing symbol, see if it conflicts with the new symbol we're
191191
// creating. For example, a 'var' symbol and a 'class' symbol will conflict within

0 commit comments

Comments
 (0)