diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-03-01 01:25:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 01:25:43 +0100 |
commit | ff83df399af3a4ff9e291d25a9129d102ebbe284 (patch) | |
tree | f183739e899f6dd7c8d60ad69d64a051eb122e4b | |
parent | 72425ec4cebbabe5058bb79ce7eae8807c766cb4 (diff) |
fix: typo in coverage exit_unstable (#9626)
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 00f91a77d..7871fe882 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -875,7 +875,7 @@ async fn coverage_command( lcov: bool, ) -> Result<(), AnyError> { if !flags.unstable { - exit_unstable("compile"); + exit_unstable("coverage"); } if files.is_empty() { |