diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-02-24 20:39:27 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-02-24 20:39:27 +0000 |
commit | dfca3cbeb0680ad1e3694d442b6c761fe3007521 (patch) | |
tree | e87434ec26daadf0c3d1f8486391d6c183b29c49 /crates/ra_ide_api/src/completion/complete_path.rs | |
parent | 61d961263387f7293f3d0c4d7b8c8c9a07959ced (diff) | |
parent | bd8ed644e4362785b079ba9fbe2d4e490a678d27 (diff) |
Merge #894
894: Rename Type => TypeAlias r=matklad a=flodiebold
Co-authored-by: Florian Diebold <[email protected]>
Diffstat (limited to 'crates/ra_ide_api/src/completion/complete_path.rs')
-rw-r--r-- | crates/ra_ide_api/src/completion/complete_path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/completion/complete_path.rs b/crates/ra_ide_api/src/completion/complete_path.rs index 629a7ee77..5ff1b9927 100644 --- a/crates/ra_ide_api/src/completion/complete_path.rs +++ b/crates/ra_ide_api/src/completion/complete_path.rs | |||
@@ -46,7 +46,7 @@ pub(super) fn complete_path(acc: &mut Completions, ctx: &CompletionContext) { | |||
46 | } | 46 | } |
47 | } | 47 | } |
48 | hir::ImplItem::Const(ct) => acc.add_const(ctx, ct), | 48 | hir::ImplItem::Const(ct) => acc.add_const(ctx, ct), |
49 | hir::ImplItem::Type(ty) => acc.add_type(ctx, ty), | 49 | hir::ImplItem::TypeAlias(ty) => acc.add_type_alias(ctx, ty), |
50 | } | 50 | } |
51 | None::<()> | 51 | None::<()> |
52 | }); | 52 | }); |