diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-06-26 16:59:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 16:59:08 -0400 |
commit | 42464e922d0bc435f32cf9d2707537a9558271fb (patch) | |
tree | c3f837c960f5ec6d6d6a81fd79465229a210e877 /cli/tsc.rs | |
parent | 3eec13fa0dfbc7fc4512102f8fe5277cdcbfb2c2 (diff) |
'Compile' messages changed to 'Check' messages (#6504)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 2ef620a6f..2104d9988 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -585,7 +585,7 @@ impl TsCompiler { // TODO(bartlomieju): lift this call up - TSC shouldn't print anything info!( "{} {}", - colors::green("Compile".to_string()), + colors::green("Check".to_string()), module_url.to_string() ); |