Rollup merge of #101274 - aDotInTheVoid:comment-typo, r=TaKO8Ki

Fix typo in comment
This commit is contained in:
Matthias Krüger 2022-09-01 21:37:19 +02:00 committed by GitHub
commit e9df5ddda2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ fn fold_item(&mut self, i: Item) -> Option<Item> {
clean::ExternCrateItem { .. } => {}
clean::ImportItem(ref imp) => {
// Because json doesn't inline imports from private modules, we need to mark
// the imported item as retained so it's impls won't be stripped.i
// the imported item as retained so it's impls won't be stripped.
//
// FIXME: Is it necessary to check for json output here: See
// https://github.com/rust-lang/rust/pull/100325#discussion_r941495215