about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-07-27 04:33:24 +0000
committerbors <bors@rust-lang.org>2024-07-27 04:33:24 +0000
commit34dc7ac79f6a2fe20e2fb67f106566ded456c7dd (patch)
treebe4013773597cddbd145671de30cc71b126b6ca9
parent1b783b069cdd0e1d0d7fe60578e07bb487c623c9 (diff)
parent55964dad2a754b9df8a92cb2a8e1f3e3e0623c66 (diff)
downloadrust-34dc7ac79f6a2fe20e2fb67f106566ded456c7dd.tar.gz
rust-34dc7ac79f6a2fe20e2fb67f106566ded456c7dd.zip
Auto merge of #17714 - Throne3d:patch-1, r=Veykril
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

I'm guessing this should skip the changelog because it's so minor, right? Reading through https://github.com/rust-lang/rust-analyzer/blob/master/docs/dev/style.md and trying to get up to speed here =)
-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.