extend comment

This commit is contained in:
Aleksey Kladov 2018-12-20 14:35:37 +03:00
parent 8693b13420
commit c96011833c
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
/// This modules specifies the input to rust-analyzer. In some sense, this is
/// **the** most important module, because all other fancy stuff is strickly
/// **the** most important module, because all other fancy stuff is strictly
/// derived from this input.
///
/// Note that neither this module, nor any other part of the analyzer's core do
/// actual IO. See `vfs` and `project_model` in `ra_lsp_server` crate for how
/// actual IO is done and lowered to input.
use std::sync::Arc;
use rustc_hash::{FxHashMap};