about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev/architecture.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-08-01 13:13:38 +0000
committerbors <bors@rust-lang.org>2024-08-01 13:13:38 +0000
commite60ebb2f2c1facba87e7971798f3cbdfd309cd23 (patch)
tree33e8a29052698c8a839016e6794e46773e37357a /src/tools/rust-analyzer/docs/dev/architecture.md
parentc0e32983f5b06a6f7d8cc776ccac71de6512ed6d (diff)
parent9ec4844925a37aae5665491b43ca526d47501d48 (diff)
downloadrust-e60ebb2f2c1facba87e7971798f3cbdfd309cd23.tar.gz
rust-e60ebb2f2c1facba87e7971798f3cbdfd309cd23.zip
Auto merge of #128490 - lnicola:sync-from-ra, r=lnicola
Subtree update of `rust-analyzer`

r? `@ghost`
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev/architecture.md')
-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.