summaryrefslogtreecommitdiff
path: root/cli/tools/coverage.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-03-01 22:49:58 +1100
committerGitHub <noreply@github.com>2021-03-01 22:49:58 +1100
commit6dae6277497c0b083f25ead2ab020482dcd5c45f (patch)
tree277ea88704a6476d8f2848adecb29f6cc47afef5 /cli/tools/coverage.rs
parent0dc89c0a793fa80b4c3ef89128fc674ec62b72a3 (diff)
feat(cli): represent type dependencies in info (#9630)
Fixes #7927
Diffstat (limited to 'cli/tools/coverage.rs')
-rw-r--r--cli/tools/coverage.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/coverage.rs b/cli/tools/coverage.rs
index 1ec33affd..eb7c5e932 100644
--- a/cli/tools/coverage.rs
+++ b/cli/tools/coverage.rs
@@ -521,7 +521,7 @@ impl CoverageReporter for PrettyCoverageReporter {
// Put a horizontal separator between disjoint runs of lines
if let Some(last_line) = last_line {
if last_line + 1 != line_index {
- let dash = colors::gray(&"-".repeat(WIDTH + 1));
+ let dash = colors::gray("-".repeat(WIDTH + 1));
println!("{}{}{}", dash, colors::gray(SEPERATOR), dash);
}
}