From 0bd0b2798c53f23e1a37b2b7aa30937ef9fed5d1 Mon Sep 17 00:00:00 2001 From: Yui T Date: Tue, 5 May 2015 15:11:14 -0700 Subject: [PATCH] Update comment --- 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 12c8b3e409c..eddd0c3178c 100644 --- a/src/compiler/binder.ts +++ b/src/compiler/binder.ts @@ -445,7 +445,7 @@ module ts { // Using ParameterExcludes flag allows the compiler to report an error on duplicate identifiers in Parameter Declaration // For example: // function foo([a,a]) {} // Duplicate Identifier error - // function bar(a,a) {} // Duplicate Identifier error, binding parameter declaration in this case is handled in bindParameter + // function bar(a,a) {} // Duplicate Identifier error, parameter declaration in this case is handled in bindParameter // // which correctly set excluded symbols bindDeclaration(node, SymbolFlags.FunctionScopedVariable, SymbolFlags.ParameterExcludes, /*isBlockScopeContainer*/ false); }