File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1145,7 +1145,7 @@ module ts {
11451145 }
11461146 }
11471147
1148- function emitSigatureParamters ( node : FunctionDeclaration ) {
1148+ function emitSignatureParameters ( node : FunctionDeclaration ) {
11491149 write ( "(" ) ;
11501150 if ( node ) {
11511151 emitCommaList ( node . parameters , node . parameters . length - ( hasRestParameters ( node ) ? 1 : 0 ) ) ;
@@ -1154,7 +1154,7 @@ module ts {
11541154 }
11551155
11561156 function emitSignatureAndBody ( node : FunctionDeclaration ) {
1157- emitSigatureParamters ( node ) ;
1157+ emitSignatureParameters ( node ) ;
11581158 write ( " {" ) ;
11591159 scopeEmitStart ( node ) ;
11601160 increaseIndent ( ) ;
@@ -1361,7 +1361,7 @@ module ts {
13611361 emitStart ( < Node > ctor || node ) ;
13621362 write ( "function " ) ;
13631363 emit ( node . name ) ;
1364- emitSigatureParamters ( ctor ) ;
1364+ emitSignatureParameters ( ctor ) ;
13651365 write ( " {" ) ;
13661366 scopeEmitStart ( node , "constructor" ) ;
13671367 increaseIndent ( ) ;
You can’t perform that action at this time.
0 commit comments