diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-02-28 12:00:14 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-28 12:00:14 +0000 |
commit | 970ddf2b65f7bd5b11bf35371874115b2296cbde (patch) | |
tree | 07e5a7fc1bc3d5f1ebac99c7dfedcf5a97a6797a /crates/ide_db/src/apply_change.rs | |
parent | 7ed2da652df2f8d81ca0d76a978da2074f8c64f3 (diff) | |
parent | c4e2f32d7331777625b1bd57b51c7e961a7fa2c6 (diff) |
Merge #7806
7806: Fixed remaining references to `AnalysisChange` (now: `Change`) r=matklad a=regexident
(The type was renamed/moved in 8716c4cec3a05ba891b20b5f28df69d925b913ad)
Co-authored-by: Vincent Esche <[email protected]>
Diffstat (limited to 'crates/ide_db/src/apply_change.rs')
-rw-r--r-- | crates/ide_db/src/apply_change.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_db/src/apply_change.rs b/crates/ide_db/src/apply_change.rs index 23974cff8..104ee113f 100644 --- a/crates/ide_db/src/apply_change.rs +++ b/crates/ide_db/src/apply_change.rs | |||
@@ -32,7 +32,7 @@ struct RootChange { | |||
32 | 32 | ||
33 | impl fmt::Debug for RootChange { | 33 | impl fmt::Debug for RootChange { |
34 | fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { | 34 | fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { |
35 | fmt.debug_struct("AnalysisChange") | 35 | fmt.debug_struct("RootChange") |
36 | .field("added", &self.added.len()) | 36 | .field("added", &self.added.len()) |
37 | .field("removed", &self.removed.len()) | 37 | .field("removed", &self.removed.len()) |
38 | .finish() | 38 | .finish() |