diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-09-25 19:14:35 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-09-25 19:14:35 +0100 |
commit | 5704485063bad82e651c8e68f4fa2d333bfdf152 (patch) | |
tree | b0928748d21ca45547e53701c6fc4d6d93a39c9a /crates/ra_ide_api | |
parent | a452e50e0e89390b8a055f0c7c64100e9872edac (diff) | |
parent | d0d1a202d4a4c56e593611aa34ef2e39255d16d2 (diff) |
Merge #1913
1913: Fix retrieval of the Fn traits r=flodiebold a=flodiebold
I used the wrong query, so it only used the lang items from the respective
crate...
Co-authored-by: Florian Diebold <[email protected]>
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/src/change.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/change.rs b/crates/ra_ide_api/src/change.rs index cc476a237..b4ba3f3cd 100644 --- a/crates/ra_ide_api/src/change.rs +++ b/crates/ra_ide_api/src/change.rs | |||
@@ -326,7 +326,7 @@ impl RootDatabase { | |||
326 | hir::db::ConstDataQuery | 326 | hir::db::ConstDataQuery |
327 | hir::db::StaticDataQuery | 327 | hir::db::StaticDataQuery |
328 | hir::db::ModuleLangItemsQuery | 328 | hir::db::ModuleLangItemsQuery |
329 | hir::db::LangItemsQuery | 329 | hir::db::CrateLangItemsQuery |
330 | hir::db::LangItemQuery | 330 | hir::db::LangItemQuery |
331 | hir::db::DocumentationQuery | 331 | hir::db::DocumentationQuery |
332 | hir::db::ExprScopesQuery | 332 | hir::db::ExprScopesQuery |