about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-02-16 21:49:22 +0000
committerbors <bors@rust-lang.org>2023-02-16 21:49:22 +0000
commita6603fc21d50b3386a488c96225b2d1fd492e533 (patch)
tree5654a54bc5d4220de6661e51f1991c059a3eb48d /docs/dev
parentb881deb66a68815fffce3ca4469b0f7792baa766 (diff)
parent936bac31d4c9b05d4828299d4de3a6ed9992fff2 (diff)
downloadrust-a6603fc21d50b3386a488c96225b2d1fd492e533.tar.gz
rust-a6603fc21d50b3386a488c96225b2d1fd492e533.zip
Auto merge of #14171 - Ethan-000:master, r=matklad
fix link

Fixes https://github.com/rust-lang/rust-analyzer/issues/14170
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md
index a07cf036e06..895de5798ac 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -119,7 +119,7 @@ See [#93](https://github.com/rust-lang/rust-analyzer/pull/93) for an example PR
 **Architecture Invariant:** `syntax` crate is completely independent from the rest of rust-analyzer. It knows nothing about salsa or LSP.
 This is important because it is possible to make useful tooling using only the syntax tree.
 Without semantic information, you don't need to be able to _build_ code, which makes the tooling more robust.
-See also https://web.stanford.edu/~mlfbrown/paper.pdf.
+See also https://mlfbrown.com/paper.pdf.
 You can view the `syntax` crate as an entry point to rust-analyzer.
 `syntax` crate is an **API Boundary**.