Fix bug in fmt_diff_with

This commit is contained in:
Will Crichton 2021-08-17 20:55:15 -07:00
parent 907ce72c43
commit 0ce96bdcfa
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ pub trait DebugWithContext<C>: Eq + fmt::Debug {
}
write!(f, "\u{001f}-")?;
self.fmt_with(ctxt, f)
old.fmt_with(ctxt, f)
}
}