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
+1 -1
View File
@@ -222,7 +222,7 @@ fn mod_item_in(&mut self, _item: &clean::Item) -> Result<(), Error> {
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);
}