File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -171,8 +171,10 @@ impl<'tcx> FormatRenderer<'tcx> for JsonRenderer<'tcx> {
171
171
/// the hashmap because certain items (traits and types) need to have their mappings for trait
172
172
/// implementations filled out before they're inserted.
173
173
fn item ( & mut self , item : clean:: Item ) -> Result < ( ) , Error > {
174
- // We skip children of local blanket implementations, as we'll have already seen the actual
175
- // generic impl, and the generated ones don't need documenting.
174
+ // FIXME(CraftSpider): We skip children of local blanket implementations, as we'll have
175
+ // already seen the actual generic impl, and the generated ones don't need documenting.
176
+ // This is necessary due to the visibility, return type, and self arg of the generated
177
+ // impls not quite matching, and will no longer be necessary when the mismatch is fixed.
176
178
let local_blanket_impl = match item. def_id {
177
179
clean:: ItemId :: Blanket { impl_id, .. } => impl_id. is_local ( ) ,
178
180
clean:: ItemId :: Auto { .. }
You can’t perform that action at this time.
0 commit comments