diff options
Diffstat (limited to 'docs/dev/architecture.md')
-rw-r--r-- | docs/dev/architecture.md | 8 |
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 | ||
139 | An LSP implementation which wraps `ide` into a language server protocol. | 139 | An LSP implementation which wraps `ide` into a language server protocol. |
140 | 140 | ||
141 | ### `ra_vfs` | 141 | ### `crates/vfs` |
142 | 142 | ||
143 | Although `hir` and `ide` don't do any IO, we need to be able to read | 143 | Although `hir` and `ide` don't do any IO, we need to be able to read |
144 | files from disk at the end of the day. This is what `ra_vfs` does. It also | 144 | files from disk at the end of the day. This is what `vfs` does. It also |
145 | manages overlays: "dirty" files in the editor, whose "true" contents is | 145 | manages overlays: "dirty" files in the editor, whose "true" contents is |
146 | different from data on disk. This is more or less the single really | 146 | different from data on disk. |
147 | platform-dependent component, so it lives in a separate repository and has an | ||
148 | extensive cross-platform CI testing. | ||
149 | 147 | ||
150 | ## Testing Infrastructure | 148 | ## Testing Infrastructure |
151 | 149 | ||