about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2021-03-08 22:19:44 +0200
committerLaurențiu Nicola <lnicola@dend.ro>2021-03-08 22:19:44 +0200
commitfc9eed4836dfc88fe2893c81b015ab440cea2ba6 (patch)
tree3905029a42c8bb6c5d363753b34cd6b5dd43f4d5 /docs/dev
parentc5189a22ccf4c28e309e4189defbb88b83bb2aea (diff)
downloadrust-fc9eed4836dfc88fe2893c81b015ab440cea2ba6.tar.gz
rust-fc9eed4836dfc88fe2893c81b015ab440cea2ba6.zip
Use upstream cov-mark
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/style.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index 93ad98f20e2..46bd8b9b213 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -145,7 +145,7 @@ Formatting ensures that you can use your editor's "number of selected characters
 ## Marked Tests
 
 Use
-[`mark::hit! / mark::check!`](https://github.com/rust-analyzer/rust-analyzer/blob/71fe719dd5247ed8615641d9303d7ca1aa201c2f/crates/test_utils/src/mark.rs)
+[`cov_mark::hit! / cov_mark::check!`](https://github.com/matklad/cov-mark)
 when testing specific conditions.
 Do not place several marks into a single test or condition.
 Do not reuse marks between several tests.