From fdbd6bb11a0c47bf9ba1428e6bd432cd2ce72045 Mon Sep 17 00:00:00 2001 From: Alexander Andreev Date: Mon, 30 Sep 2019 11:58:53 +0300 Subject: Added test for check doc strings in crates. #1856 --- crates/ra_db/src/input.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'crates/ra_db') diff --git a/crates/ra_db/src/input.rs b/crates/ra_db/src/input.rs index a1ace61b6..52f892891 100644 --- a/crates/ra_db/src/input.rs +++ b/crates/ra_db/src/input.rs @@ -1,10 +1,11 @@ -/// This module specifies the input to rust-analyzer. In some sense, this is -/// **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 the `ra_lsp_server` crate for how -/// actual IO is done and lowered to input. +//! This module specifies the input to rust-analyzer. In some sense, this is +//! **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 the `ra_lsp_server` crate for how +//! actual IO is done and lowered to input. + use relative_path::{RelativePath, RelativePathBuf}; use rustc_hash::FxHashMap; -- cgit v1.2.3