diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-09-01 21:37:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-01 21:37:19 +0200 |
| commit | e9df5ddda26702e8c2ce21558a9a332153362931 (patch) | |
| tree | c7492d8c405c65ca023e69f52dd79542da5b48ad | |
| parent | 754cb2a6f0a018d79904a5e2112e5eced343e893 (diff) | |
| parent | c9f4af6e11ce44a3ab5de838279295be3df3aa95 (diff) | |
| download | rust-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.rs | 2 |
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 |
