diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-08-25 11:14:45 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-25 11:14:45 +0100 |
commit | 4f91478e50dc5c2a87235e9be8bd91e3f62de4b4 (patch) | |
tree | bf97e30a7e9b806f36fc26c153951181884debfa /crates/ide/src/completion/presentation.rs | |
parent | 59c77ff062e2b1668fcfa885a8438c333b4f0875 (diff) | |
parent | b45dd9ef54c668b714c6fc41bc42d415ed772f32 (diff) |
Merge #5867
5867: Use the same abstraction for attrs and docs
r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ide/src/completion/presentation.rs')
-rw-r--r-- | crates/ide/src/completion/presentation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/completion/presentation.rs b/crates/ide/src/completion/presentation.rs index 3371aed2d..24c507f9b 100644 --- a/crates/ide/src/completion/presentation.rs +++ b/crates/ide/src/completion/presentation.rs | |||
@@ -1,7 +1,7 @@ | |||
1 | //! This modules takes care of rendering various definitions as completion items. | 1 | //! This modules takes care of rendering various definitions as completion items. |
2 | //! It also handles scoring (sorting) completions. | 2 | //! It also handles scoring (sorting) completions. |
3 | 3 | ||
4 | use hir::{Docs, HasAttrs, HasSource, HirDisplay, ModPath, ScopeDef, StructKind, Type}; | 4 | use hir::{HasAttrs, HasSource, HirDisplay, ModPath, ScopeDef, StructKind, Type}; |
5 | use itertools::Itertools; | 5 | use itertools::Itertools; |
6 | use syntax::ast::NameOwner; | 6 | use syntax::ast::NameOwner; |
7 | use test_utils::mark; | 7 | use test_utils::mark; |