From 7b145bd99c855b2f4a15835a2298dde504b04d8f Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 27 Nov 2020 12:26:20 +0200 Subject: Rustdocs fixes --- crates/ide_helpers/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crates/ide_helpers/src') diff --git a/crates/ide_helpers/src/lib.rs b/crates/ide_helpers/src/lib.rs index 069cb2bdd..ad4404b19 100644 --- a/crates/ide_helpers/src/lib.rs +++ b/crates/ide_helpers/src/lib.rs @@ -1,12 +1,14 @@ +//! A module with ide helpers for high-level ide features. use hir::{Crate, Enum, Module, ScopeDef, Semantics, Trait}; use ide_db::RootDatabase; use syntax::ast::{self, make}; pub mod insert_use; +/// Converts the mod path struct into its ast representation. pub fn mod_path_to_ast(path: &hir::ModPath) -> ast::Path { let _p = profile::span("mod_path_to_ast"); - + let mut segments = Vec::new(); let mut is_abs = false; match path.kind { -- cgit v1.2.3