about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-09-01 21:37:19 +0200
committerGitHub <noreply@github.com>2022-09-01 21:37:19 +0200
commite9df5ddda26702e8c2ce21558a9a332153362931 (patch)
treec7492d8c405c65ca023e69f52dd79542da5b48ad
parent754cb2a6f0a018d79904a5e2112e5eced343e893 (diff)
parentc9f4af6e11ce44a3ab5de838279295be3df3aa95 (diff)
downloadrust-e9df5ddda26702e8c2ce21558a9a332153362931.tar.gz
rust-e9df5ddda26702e8c2ce21558a9a332153362931.zip
Rollup merge of #101274 - aDotInTheVoid:comment-typo, r=TaKO8Ki
Fix typo in comment
-rw-r--r--src/librustdoc/passes/stripper.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/passes/stripper.rs b/src/librustdoc/passes/stripper.rs
index 83ed3752a82..a9d768f0149 100644
--- a/src/librustdoc/passes/stripper.rs
+++ b/src/librustdoc/passes/stripper.rs
@@ -91,7 +91,7 @@ impl<'a> DocFolder for Stripper<'a> {
             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