aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/architecture.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev/architecture.md')
-rw-r--r--docs/dev/architecture.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md
index 6f1377f2f..b5831f47c 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -138,14 +138,12 @@ offsets and strings as output. This works on top of rich code model powered by
138 138
139An LSP implementation which wraps `ide` into a language server protocol. 139An LSP implementation which wraps `ide` into a language server protocol.
140 140
141### `ra_vfs` 141### `crates/vfs`
142 142
143Although `hir` and `ide` don't do any IO, we need to be able to read 143Although `hir` and `ide` don't do any IO, we need to be able to read
144files from disk at the end of the day. This is what `ra_vfs` does. It also 144files from disk at the end of the day. This is what `vfs` does. It also
145manages overlays: "dirty" files in the editor, whose "true" contents is 145manages overlays: "dirty" files in the editor, whose "true" contents is
146different from data on disk. This is more or less the single really 146different from data on disk.
147platform-dependent component, so it lives in a separate repository and has an
148extensive cross-platform CI testing.
149 147
150## Testing Infrastructure 148## Testing Infrastructure
151 149