diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-11-11 09:20:20 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-11-11 09:20:20 +0000 |
commit | 3dff405443e23a551429d224b6a676361cc6574d (patch) | |
tree | 07010e39e6d56903fc72c94c1fa8ddb5dd6b9c25 /crates/ra_ide_api/src/display.rs | |
parent | 2ccc45979cd2057bb88e209474698090fb32bb40 (diff) | |
parent | 4deba88c33c470f084c531fa979fe5684d37f757 (diff) |
Merge #2210
2210: Introduce ToNav trait r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide_api/src/display.rs')
-rw-r--r-- | crates/ra_ide_api/src/display.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/display.rs b/crates/ra_ide_api/src/display.rs index a980c56bc..30617412a 100644 --- a/crates/ra_ide_api/src/display.rs +++ b/crates/ra_ide_api/src/display.rs | |||
@@ -15,7 +15,7 @@ pub use function_signature::FunctionSignature; | |||
15 | pub use navigation_target::NavigationTarget; | 15 | pub use navigation_target::NavigationTarget; |
16 | pub use structure::{file_structure, StructureNode}; | 16 | pub use structure::{file_structure, StructureNode}; |
17 | 17 | ||
18 | pub(crate) use navigation_target::{description_from_symbol, docs_from_symbol}; | 18 | pub(crate) use navigation_target::{description_from_symbol, docs_from_symbol, ToNav}; |
19 | pub(crate) use short_label::ShortLabel; | 19 | pub(crate) use short_label::ShortLabel; |
20 | 20 | ||
21 | pub(crate) fn function_label(node: &ast::FnDef) -> String { | 21 | pub(crate) fn function_label(node: &ast::FnDef) -> String { |