diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-01-03 17:12:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-03 17:12:13 +0100 |
| commit | e2f7108459baf3e3af1b7ed7d02c9100b2a413d8 (patch) | |
| tree | 2651ff5ded917a68d352a1dec8e6cee278af5bbc /src | |
| parent | 9d1193310f5c08c34d4d8d806a8342634dce5eaf (diff) | |
| parent | e808a69911c31609b67c1e94a940b398af324f34 (diff) | |
| download | rust-e2f7108459baf3e3af1b7ed7d02c9100b2a413d8.tar.gz rust-e2f7108459baf3e3af1b7ed7d02c9100b2a413d8.zip | |
Rollup merge of #106402 - Rageking8:fix_dupe_word_typos, r=Nilstrieb
Fix dupe word typos r? `@Nilstrieb` Thanks!
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/visit_ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/visit_ast.rs b/src/librustdoc/visit_ast.rs index 310a01194ea..7db47035967 100644 --- a/src/librustdoc/visit_ast.rs +++ b/src/librustdoc/visit_ast.rs @@ -410,7 +410,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> { /// This method will create a new module and push it onto the "modules stack" then call /// `visit_mod_contents`. Once done, it'll remove it from the "modules stack" and instead - /// add into into the list of modules of the current module. + /// add into the list of modules of the current module. fn enter_mod(&mut self, id: hir::HirId, m: &'tcx hir::Mod<'tcx>, name: Symbol) { self.modules.push(Module::new(name, id, m.spans.inner_span)); |
