diff options
| author | Sarrus1 <omegasix0611@gmail.com> | 2023-10-30 19:40:24 +0100 |
|---|---|---|
| committer | Sarrus1 <omegasix0611@gmail.com> | 2023-10-30 19:40:24 +0100 |
| commit | 9d290f1d4c45d4459b51f26c3df26025e23e21b1 (patch) | |
| tree | 144318072a5dc8b27792e594f6a1377371b9c52c /docs/dev | |
| parent | 16f3398ff47ef638d252edd042ff6135af650d9a (diff) | |
| download | rust-9d290f1d4c45d4459b51f26c3df26025e23e21b1.tar.gz rust-9d290f1d4c45d4459b51f26c3df26025e23e21b1.zip | |
chore: fix urls in guide.md
Diffstat (limited to 'docs/dev')
| -rw-r--r-- | docs/dev/guide.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dev/guide.md b/docs/dev/guide.md index 56a68ef0437..a5f1811bf24 100644 --- a/docs/dev/guide.md +++ b/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. |
