diff options
author | csmoe <[email protected]> | 2019-01-04 13:29:00 +0000 |
---|---|---|
committer | csmoe <[email protected]> | 2019-01-04 13:29:00 +0000 |
commit | f604ff5b2f72a593e23953ed8be7e9cbeba5d287 (patch) | |
tree | a084598dfd0c70fed03f1ac556be9b7eed5fb43d /crates/ra_analysis/src | |
parent | 8a6d6ac1326ed522004350ae5700ef3ca10c8230 (diff) |
parse doc comment for items
Diffstat (limited to 'crates/ra_analysis/src')
-rw-r--r-- | crates/ra_analysis/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_analysis/src/lib.rs b/crates/ra_analysis/src/lib.rs index ab935954c..1e26a2889 100644 --- a/crates/ra_analysis/src/lib.rs +++ b/crates/ra_analysis/src/lib.rs | |||
@@ -394,7 +394,7 @@ impl Analysis { | |||
394 | pub fn doc_text_for(&self, nav: NavigationTarget) -> Cancelable<Option<String>> { | 394 | pub fn doc_text_for(&self, nav: NavigationTarget) -> Cancelable<Option<String>> { |
395 | self.db.doc_text_for(nav) | 395 | self.db.doc_text_for(nav) |
396 | } | 396 | } |
397 | /// Returns a `mod name;` declaration whihc created the current module. | 397 | /// Returns a `mod name;` declaration which created the current module. |
398 | pub fn parent_module(&self, position: FilePosition) -> Cancelable<Vec<NavigationTarget>> { | 398 | pub fn parent_module(&self, position: FilePosition) -> Cancelable<Vec<NavigationTarget>> { |
399 | self.db.parent_module(position) | 399 | self.db.parent_module(position) |
400 | } | 400 | } |