diff options
-rw-r--r-- | docs/dev/architecture.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index 1cf498094..cf714d659 100644 --- a/docs/dev/architecture.md +++ b/docs/dev/architecture.md | |||
@@ -50,15 +50,15 @@ processes. These are outlined below: | |||
50 | the grammar described in [grammar.ron]: | 50 | the grammar described in [grammar.ron]: |
51 | - [ast/generated.rs][ast generated] in `ra_syntax` based on | 51 | - [ast/generated.rs][ast generated] in `ra_syntax` based on |
52 | [ast/generated.tera.rs][ast source] | 52 | [ast/generated.tera.rs][ast source] |
53 | - [syntax_kinds/generated.rs][syntax_kinds generated] in `ra_syntax` based on | 53 | - [syntax_kind/generated.rs][syntax_kind generated] in `ra_syntax` based on |
54 | [syntax_kinds/generated.tera.rs][syntax_kinds source] | 54 | [syntax_kind/generated.tera.rs][syntax_kind source] |
55 | 55 | ||
56 | [tera]: https://tera.netlify.com/ | 56 | [tera]: https://tera.netlify.com/ |
57 | [grammar.ron]: ../../crates/ra_syntax/src/grammar.ron | 57 | [grammar.ron]: ../../crates/ra_syntax/src/grammar.ron |
58 | [ast generated]: ../../crates/ra_syntax/src/ast/generated.rs | 58 | [ast generated]: ../../crates/ra_syntax/src/ast/generated.rs |
59 | [ast source]: ../../crates/ra_syntax/src/ast/generated.rs.tera | 59 | [ast source]: ../../crates/ra_syntax/src/ast/generated.rs.tera |
60 | [syntax_kinds generated]: ../../crates/ra_syntax/src/syntax_kinds/generated.rs | 60 | [syntax_kind generated]: ../../crates/ra_parser/src/syntax_kind/generated.rs |
61 | [syntax_kinds source]: ../../crates/ra_syntax/src/syntax_kinds/generated.rs.tera | 61 | [syntax_kind source]: ../../crates/ra_parser/src/syntax_kind/generated.rs.tera |
62 | 62 | ||
63 | 63 | ||
64 | ## Code Walk-Through | 64 | ## Code Walk-Through |