aboutsummaryrefslogtreecommitdiff
path: root/crates/base_db
diff options
context:
space:
mode:
authorVincent Esche <[email protected]>2021-02-28 11:57:41 +0000
committerVincent Esche <[email protected]>2021-02-28 11:57:41 +0000
commitc4e2f32d7331777625b1bd57b51c7e961a7fa2c6 (patch)
tree07e5a7fc1bc3d5f1ebac99c7dfedcf5a97a6797a /crates/base_db
parent7ed2da652df2f8d81ca0d76a978da2074f8c64f3 (diff)
Fixed remaining references to `AnalysisChange` (now: `Change`)
(The type was renamed/moved in 8716c4cec3a05ba891b20b5f28df69d925b913ad)
Diffstat (limited to 'crates/base_db')
-rw-r--r--crates/base_db/src/change.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/base_db/src/change.rs b/crates/base_db/src/change.rs
index 043e03bba..04e294e41 100644
--- a/crates/base_db/src/change.rs
+++ b/crates/base_db/src/change.rs
@@ -19,7 +19,7 @@ pub struct Change {
19 19
20impl fmt::Debug for Change { 20impl fmt::Debug for Change {
21 fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { 21 fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
22 let mut d = fmt.debug_struct("AnalysisChange"); 22 let mut d = fmt.debug_struct("Change");
23 if let Some(roots) = &self.roots { 23 if let Some(roots) = &self.roots {
24 d.field("roots", roots); 24 d.field("roots", roots);
25 } 25 }