Unnamed repository; edit this file 'description' to name the repository.
Minor: replace old name `CrateDefMap`
toyboot4e 2021-09-05
parent c16e647 · commit 89e46b4
-rw-r--r--crates/hir_def/src/nameres.rs6
-rw-r--r--crates/ide_db/src/symbol_index.rs2
2 files changed, 4 insertions, 4 deletions
diff --git a/crates/hir_def/src/nameres.rs b/crates/hir_def/src/nameres.rs
index cd314c8c9a..37c57ea63d 100644
--- a/crates/hir_def/src/nameres.rs
+++ b/crates/hir_def/src/nameres.rs
@@ -1,14 +1,14 @@
//! This module implements import-resolution/macro expansion algorithm.
//!
-//! The result of this module is `CrateDefMap`: a data structure which contains:
+//! The result of this module is `DefMap`: a data structure which contains:
//!
//! * a tree of modules for the crate
//! * for each module, a set of items visible in the module (directly declared
//! or imported)
//!
-//! Note that `CrateDefMap` contains fully macro expanded code.
+//! Note that `DefMap` contains fully macro expanded code.
//!
-//! Computing `CrateDefMap` can be partitioned into several logically
+//! Computing `DefMap` can be partitioned into several logically
//! independent "phases". The phases are mutually recursive though, there's no
//! strict ordering.
//!
diff --git a/crates/ide_db/src/symbol_index.rs b/crates/ide_db/src/symbol_index.rs
index 000f87a858..fb3568b107 100644
--- a/crates/ide_db/src/symbol_index.rs
+++ b/crates/ide_db/src/symbol_index.rs
@@ -198,7 +198,7 @@ pub fn world_symbols(db: &RootDatabase, query: Query) -> Vec<FileSymbol> {
pub fn crate_symbols(db: &RootDatabase, krate: CrateId, query: Query) -> Vec<FileSymbol> {
let _p = profile::span("crate_symbols").detail(|| format!("{:?}", query));
- // FIXME(#4842): This now depends on CrateDefMap, why not build the entire symbol index from
+ // FIXME(#4842): This now depends on DefMap, why not build the entire symbol index from
// that instead?
let def_map = db.crate_def_map(krate);