aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-08-26 14:38:31 +0100
committerGitHub <[email protected]>2020-08-26 14:38:31 +0100
commita0324a59e97bab5939f7145b65115c62a4c44913 (patch)
tree54e58928e111d7b18155e8eae97c9db33603af3a /docs
parentd58a3a277a1778ec33e492e958b52869510c1239 (diff)
parent3dbe0627413e87f3c69df156a10333e121e5f4c6 (diff)
Merge #5879
5879: Update mentions of 'ra_vfs' in architecture doc r=matklad a=rherrmann Adjust the paragraph about `ra_vfs` to point to the `vfs` crate that is used now. Co-authored-by: RĂ¼diger Herrmann <[email protected]>
Diffstat (limited to 'docs')
-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