Fix small debug typo

This commit is contained in:
Guillaume Gomez 2023-02-08 17:31:54 +01:00
parent a9985cf172
commit cc8758480c

View File

@ -222,7 +222,7 @@ impl<'tcx> FormatRenderer<'tcx> for JsonRenderer<'tcx> {
fn after_krate(&mut self) -> Result<(), Error> { fn after_krate(&mut self) -> Result<(), Error> {
debug!("Done with crate"); debug!("Done with crate");
debug!("Adding Primitve impls"); debug!("Adding Primitive impls");
for primitive in Rc::clone(&self.cache).primitive_locations.values() { for primitive in Rc::clone(&self.cache).primitive_locations.values() {
self.get_impls(*primitive); self.get_impls(*primitive);
} }