about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev
diff options
context:
space:
mode:
authorEdward Jones <throne3d@gmail.com>2024-07-26 22:49:11 -0300
committerGitHub <noreply@github.com>2024-07-26 22:49:11 -0300
commit55964dad2a754b9df8a92cb2a8e1f3e3e0623c66 (patch)
tree674127638a88a41ba0bcce590a6e86942b7aa43d /src/tools/rust-analyzer/docs/dev
parent13f0a021d6a011045537b0b89def4a9d06200296 (diff)
downloadrust-55964dad2a754b9df8a92cb2a8e1f3e3e0623c66.tar.gz
rust-55964dad2a754b9df8a92cb2a8e1f3e3e0623c66.zip
docs: Reference cov_mark crate instead of test_utils/mark
Seems this was switched over in https://github.com/rust-lang/rust-analyzer/issues/7922
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev')
-rw-r--r--src/tools/rust-analyzer/docs/dev/architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/architecture.md b/src/tools/rust-analyzer/docs/dev/architecture.md
index f4e7263868c..4f8723a9368 100644
--- a/src/tools/rust-analyzer/docs/dev/architecture.md
+++ b/src/tools/rust-analyzer/docs/dev/architecture.md
@@ -408,7 +408,7 @@ It has a much richer vocabulary of types than `ide`, but the basic testing setup
 For comparisons, we use the `expect` crate for snapshot testing.
 
 To test various analysis corner cases and avoid forgetting about old tests, we use so-called marks.
-See the `marks` module in the `test_utils` crate for more.
+See the [cov_mark](https://docs.rs/cov-mark/latest/cov_mark/) crate documentation for more.
 
 **Architecture Invariant:** rust-analyzer tests do not use libcore or libstd.
 All required library code must be a part of the tests.