From 732ec343fc0ad08c5615d9e496b9dd0549e2a65a Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Mon, 5 Oct 2015 14:25:48 -0700 Subject: [PATCH] update comment --- src/compiler/program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/program.ts b/src/compiler/program.ts index 0cdcddbb0ed..f8bb1e94da5 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -1063,7 +1063,7 @@ namespace ts { programDiagnostics.add(createCompilerDiagnostic(Diagnostics.Cannot_compile_modules_into_es6_when_targeting_ES5_or_lower)); } - // Cannot specify module gen that isn't amd, umd, or system with --out + // Cannot specify module gen that isn't amd or system with --out if (outFile && options.module && options.module !== ModuleKind.AMD && options.module !== ModuleKind.System) { programDiagnostics.add(createCompilerDiagnostic(Diagnostics.Only_amd_and_system_modules_are_supported_alongside_0, options.out ? "out" : "outFile")); }