diff options
author | Aleksey Kladov <[email protected]> | 2018-12-20 11:35:37 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-20 11:35:37 +0000 |
commit | c96011833c7017505a9de21f35e5c7dece7446d3 (patch) | |
tree | f2ac01e27cb63522455ed4a76a393cb17272aa9f /crates/ra_db | |
parent | 8693b1342093e71c1c39db0daee8580687e749f2 (diff) |
extend comment
Diffstat (limited to 'crates/ra_db')
-rw-r--r-- | crates/ra_db/src/input.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/ra_db/src/input.rs b/crates/ra_db/src/input.rs index 095730521..f12dd9345 100644 --- a/crates/ra_db/src/input.rs +++ b/crates/ra_db/src/input.rs | |||
@@ -1,6 +1,10 @@ | |||
1 | /// This modules specifies the input to rust-analyzer. In some sense, this is | 1 | /// This modules specifies the input to rust-analyzer. In some sense, this is |
2 | /// **the** most important module, because all other fancy stuff is strickly | 2 | /// **the** most important module, because all other fancy stuff is strictly |
3 | /// derived from this input. | 3 | /// derived from this input. |
4 | /// | ||
5 | /// Note that neither this module, nor any other part of the analyzer's core do | ||
6 | /// actual IO. See `vfs` and `project_model` in `ra_lsp_server` crate for how | ||
7 | /// actual IO is done and lowered to input. | ||
4 | use std::sync::Arc; | 8 | use std::sync::Arc; |
5 | 9 | ||
6 | use rustc_hash::{FxHashMap}; | 10 | use rustc_hash::{FxHashMap}; |