Rollup merge of #107807 - GuillaumeGomez:fix-small-debug-typo, r=notriddle

Fix small debug typo

r? ``@notriddle``
This commit is contained in:
Matthias Krüger 2023-02-08 18:32:45 +01:00 committed by GitHub
commit 3eea052dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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