about summary refs log tree commit diff
path: root/docs/dev/syntax.md
diff options
context:
space:
mode:
authorJonas Schievink <jonas.schievink@ferrous-systems.com>2022-07-08 15:44:49 +0200
committerJonas Schievink <jonas.schievink@ferrous-systems.com>2022-07-08 15:44:49 +0200
commit6c6ae965ba1235b6cbd8299e2959698bd394e80a (patch)
tree17af8583fabe0eba9592c1e9882dfd145974aec1 /docs/dev/syntax.md
parent09abd76c6a601797c2287a9ef341b7ce904e8aa6 (diff)
downloadrust-6c6ae965ba1235b6cbd8299e2959698bd394e80a.tar.gz
rust-6c6ae965ba1235b6cbd8299e2959698bd394e80a.zip
Update remaining GitHub URLs
Diffstat (limited to 'docs/dev/syntax.md')
-rw-r--r--docs/dev/syntax.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dev/syntax.md b/docs/dev/syntax.md
index 863808e0834..30e13701383 100644
--- a/docs/dev/syntax.md
+++ b/docs/dev/syntax.md
@@ -2,16 +2,16 @@
 
 ## About the guide
 
-This guide describes the current state of syntax trees and parsing in rust-analyzer as of 2020-01-09 ([link to commit](https://github.com/rust-analyzer/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6)).
+This guide describes the current state of syntax trees and parsing in rust-analyzer as of 2020-01-09 ([link to commit](https://github.com/rust-lang/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6)).
 
 ## Source Code
 
 The things described are implemented in three places
 
 * [rowan](https://github.com/rust-analyzer/rowan/tree/v0.9.0) -- a generic library for rowan syntax trees.
-* [ra_syntax](https://github.com/rust-analyzer/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6/crates/ra_syntax) crate inside rust-analyzer which wraps `rowan` into rust-analyzer specific API.
+* [ra_syntax](https://github.com/rust-lang/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6/crates/ra_syntax) crate inside rust-analyzer which wraps `rowan` into rust-analyzer specific API.
   Nothing in rust-analyzer except this crate knows about `rowan`.
-* [parser](https://github.com/rust-analyzer/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6/crates/parser) crate parses input tokens into an `ra_syntax` tree
+* [parser](https://github.com/rust-lang/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6/crates/parser) crate parses input tokens into an `ra_syntax` tree
 
 ## Design Goals