aboutsummaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2021-02-07 04:53:54 +0000
committerEdwin Cheng <[email protected]>2021-02-07 04:53:54 +0000
commita0475f10d8ea9133a456421186055097e2d732b8 (patch)
tree9bc445d1e21a2775dc8d4041e428d80de1f95939 /docs/dev
parent542e35e39789d45756c4483f07c831ebbb352ebe (diff)
Remove redunacny
Diffstat (limited to 'docs/dev')
-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 c5e4acea3..6ccb4a27f 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -258,7 +258,7 @@ They are independent from the rest of the code.
258`mbe` crate contains tools for transforming between syntax trees and token tree. 258`mbe` crate contains tools for transforming between syntax trees and token tree.
259And it also handles the actual parsing and expansion of declarative macro (a-la "Macros By Example" or mbe). 259And it also handles the actual parsing and expansion of declarative macro (a-la "Macros By Example" or mbe).
260 260
261For proc macros, the client-server model are used to run proc-macro. 261For proc macros, the client-server model are used.
262We pass an argument `--proc-macro` to `rust-analyzer` binary to start a separate process (`proc_macro_srv`). 262We pass an argument `--proc-macro` to `rust-analyzer` binary to start a separate process (`proc_macro_srv`).
263And the client (`proc_macro_api`) provides an interface to talk to that server separately. 263And the client (`proc_macro_api`) provides an interface to talk to that server separately.
264 264