diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-06-12 10:23:23 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-06-12 10:23:23 +0100 |
commit | 6296f51678843c96a4ab1f1e6784b6d69222e072 (patch) | |
tree | 712bc9b3c52588cb8694e0ccd9f52c4315e039d7 /docs | |
parent | 98020ef2f30cae2c1333389f43d9014f6b03981f (diff) | |
parent | 40bcbcbc1c2729b29480021dc59f48d79d4644ca (diff) |
Merge #1396
1396: fixed wrong links again r=matklad a=zbelial
Hi
Sorry about that I didn't check all links in my previous PR and two of them were incorrectly fixed.
I think they are all proporly fixed this time :)
Co-authored-by: zjy <[email protected]>
Diffstat (limited to 'docs')
-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 |