diff options
author | RĂ¼diger Herrmann <[email protected]> | 2020-08-25 16:57:29 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-25 16:57:29 +0100 |
commit | 3dbe0627413e87f3c69df156a10333e121e5f4c6 (patch) | |
tree | 217eb181ecf83764f8fffe69f3ab61661ac85de7 /docs | |
parent | 32be2d60af7c5c4706dc4ad4957056032d569643 (diff) |
Update mentions of 'ra_vfs' in architecture doc
Adjust the paragraph about `ra_vfs` to point to the `vfs` crate that is used now.
Diffstat (limited to 'docs')
-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 | ||