]> git.lizzy.rs Git - rust.git/commitdiff
Update docs/dev/syntax.md
authorzyctree <appletree2479@outlook.com>
Tue, 11 Oct 2022 11:37:49 +0000 (19:37 +0800)
committerGitHub <noreply@github.com>
Tue, 11 Oct 2022 11:37:49 +0000 (19:37 +0800)
Co-authored-by: Laurențiu Nicola <lnicola@users.noreply.github.com>
docs/dev/syntax.md

index 64c872b2517661ba20cc33a9d2f5d8050bbfda7c..767233351b40ab581dcfec1f31c649155ad3ebd8 100644 (file)
@@ -11,7 +11,7 @@ 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-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-lang/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6/crates/ra_parser) crate parses input tokens into an `ra_syntax` tree
+* [ra_parser](https://github.com/rust-lang/rust-analyzer/tree/cf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6/crates/ra_parser) crate parses input tokens into an `ra_syntax` tree
 
 ## Design Goals