Fix a command example in help messages (#9747)

This commit is contained in:
falsandtru 2016-07-16 03:52:39 +09:00 committed by Yui
parent d66837bac8
commit 4954f810ac

View file

@ -642,7 +642,7 @@ namespace ts {
// Build up the list of examples.
const padding = makePadding(marginLength);
output += getDiagnosticText(Diagnostics.Examples_Colon_0, makePadding(marginLength - examplesLength) + "tsc hello.ts") + sys.newLine;
output += padding + "tsc --out file.js file.ts" + sys.newLine;
output += padding + "tsc --outFile file.js file.ts" + sys.newLine;
output += padding + "tsc @args.txt" + sys.newLine;
output += sys.newLine;