Fix spelling

This commit is contained in:
Yui T 2014-10-07 10:17:29 -07:00
parent 747ae1b1f5
commit d345d228a7

View File

@ -3242,7 +3242,7 @@ module ts {
} else {
// targetSourceFile is specified (i.e. calling emitter from language service)
if (shouldEmitToOwnFile(targetSourceFile, compilerOptions)) {
// If shouldEmitToOwnFile is true or targetSouceFile is an external module file, then emit targetSourceFile in its own output file
// If shouldEmitToOwnFile is true or targetSourceFile is an external module file, then emit targetSourceFile in its own output file
var jsFilePath = getOwnEmitOutputFilePath(targetSourceFile, ".js");
emitFile(jsFilePath, targetSourceFile);
} else {