rename some structs

This commit is contained in:
appflowy
2022-01-10 17:39:32 +08:00
parent 08a43c03d4
commit 46a3eb57fa
18 changed files with 144 additions and 129 deletions

View File

@ -447,7 +447,7 @@ fn invert_from_other<T: Attributes>(
let other_ops = DeltaIter::from_interval(other, Interval::new(start, end)).ops();
other_ops.into_iter().for_each(|other_op| match operation {
Operation::Delete(n) => {
tracing::trace!("invert delete: {} by add {}", n, other_op);
// tracing::trace!("invert delete: {} by add {}", n, other_op);
base.add(other_op);
},
Operation::Retain(_retain) => {