aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/architecture.md
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-10-17 21:01:53 +0100
committerAleksey Kladov <[email protected]>2019-10-17 21:14:05 +0100
commit5376c769f0cb6076c4862e728af042bb563a5051 (patch)
tree890a88741ef83c5ca0a57006c1972d0870fd86a4 /docs/dev/architecture.md
parent7b15c4f7ae95e2e855cb783871906fa7bf364c4c (diff)
rename tools -> xtask
Diffstat (limited to 'docs/dev/architecture.md')
-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 28f2a37e5..5ec5352e7 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -71,7 +71,7 @@ Rust syntax tree structure and parser. See
71 This is the thing that turns a flat list of events into a tree (see `EventProcessor`) 71 This is the thing that turns a flat list of events into a tree (see `EventProcessor`)
72- `ast` provides a type safe API on top of the raw `rowan` tree. 72- `ast` provides a type safe API on top of the raw `rowan` tree.
73- `grammar.ron` RON description of the grammar, which is used to 73- `grammar.ron` RON description of the grammar, which is used to
74 generate `syntax_kinds` and `ast` modules, using `cargo gen-syntax` command. 74 generate `syntax_kinds` and `ast` modules, using `cargo xtask codegen` command.
75- `algo`: generic tree algorithms, including `walk` for O(1) stack 75- `algo`: generic tree algorithms, including `walk` for O(1) stack
76 space tree traversal (this is cool). 76 space tree traversal (this is cool).
77 77