mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 12:33:33 +00:00
extend comment
This commit is contained in:
parent
8693b13420
commit
c96011833c
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
||||||
/// This modules specifies the input to rust-analyzer. In some sense, this is
|
/// 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.
|
/// 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 std::sync::Arc;
|
||||||
|
|
||||||
use rustc_hash::{FxHashMap};
|
use rustc_hash::{FxHashMap};
|
||||||
|
|
Loading…
Reference in a new issue