about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev/guide.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-11-14 18:43:27 +0000
committerbors <bors@rust-lang.org>2023-11-14 18:43:27 +0000
commit49b27f4efbb63b0a35c8d5504e2f38efec8b4d14 (patch)
treed1bc30046afed2c6d1a91d68340b32aafd806f90 /src/tools/rust-analyzer/docs/dev/guide.md
parent8d57ad1adeb66bc183ee8171b57839656896b7d5 (diff)
parent6ad73f5ee8bc25f89966b258400056d1f776760d (diff)
downloadrust-49b27f4efbb63b0a35c8d5504e2f38efec8b4d14.tar.gz
rust-49b27f4efbb63b0a35c8d5504e2f38efec8b4d14.zip
Auto merge of #117701 - lnicola:sync-from-ra, r=onur-ozkan,HKalbasi
Subtree update of `rust-analyzer`

r? `@HKalbasi`
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev/guide.md')
-rw-r--r--src/tools/rust-analyzer/docs/dev/guide.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/guide.md b/src/tools/rust-analyzer/docs/dev/guide.md
index 56a68ef0437..a5f1811bf24 100644
--- a/src/tools/rust-analyzer/docs/dev/guide.md
+++ b/src/tools/rust-analyzer/docs/dev/guide.md
@@ -272,7 +272,7 @@ several times, with different sets of `cfg`s enabled. The IDE-specific task of
 mapping source code into a semantic model is inherently imprecise for
 this reason and gets handled by the [`source_binder`].
 
-[`source_binder`]: https://github.com/rust-lang/rust-analyzer/blob/guide-2019-01/crates/hir/src/source_binder.rs
+[`source_binder`]: https://github.com/rust-lang/rust-analyzer/blob/guide-2019-01/crates/ra_hir/src/source_binder.rs
 
 The semantic interface is declared in the [`code_model_api`] module. Each entity is
 identified by an integer ID and has a bunch of methods which take a salsa database
@@ -280,8 +280,8 @@ as an argument and returns other entities (which are also IDs). Internally, thes
 methods invoke various queries on the database to build the model on demand.
 Here's [the list of queries].
 
-[`code_model_api`]: https://github.com/rust-lang/rust-analyzer/blob/guide-2019-01/crates/hir/src/code_model_api.rs
-[the list of queries]: https://github.com/rust-lang/rust-analyzer/blob/7e84440e25e19529e4ff8a66e521d1b06349c6ec/crates/hir/src/db.rs#L20-L106
+[`code_model_api`]: https://github.com/rust-lang/rust-analyzer/blob/guide-2019-01/crates/ra_hir/src/code_model_api.rs
+[the list of queries]: https://github.com/rust-lang/rust-analyzer/blob/7e84440e25e19529e4ff8a66e521d1b06349c6ec/crates/ra_hir/src/db.rs#L20-L106
 
 The first step of building the model is parsing the source code.