aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/architecture.md
diff options
context:
space:
mode:
authorRĂ¼diger Herrmann <[email protected]>2020-08-25 16:57:29 +0100
committerGitHub <[email protected]>2020-08-25 16:57:29 +0100
commit3dbe0627413e87f3c69df156a10333e121e5f4c6 (patch)
tree217eb181ecf83764f8fffe69f3ab61661ac85de7 /docs/dev/architecture.md
parent32be2d60af7c5c4706dc4ad4957056032d569643 (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/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