about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-12-14 20:47:28 +0100
committerGitHub <noreply@github.com>2021-12-14 20:47:28 +0100
commitf608e519ccad7de0ee37fa520303e4cf948f5970 (patch)
treea0da0be2687302c517de6b33d852345f30cfbfe9
parent4b37cfc50cb1a909eefe632ea92fb5a2ad8bf240 (diff)
parentdfdc60fc99847af6df0867f2d1b27adf24bfe30e (diff)
downloadrust-f608e519ccad7de0ee37fa520303e4cf948f5970.tar.gz
rust-f608e519ccad7de0ee37fa520303e4cf948f5970.zip
Rollup merge of #91774 - surechen:fix_typo_1, r=wesleywiser
Fix typo for MutVisitor

Fix typo for MutVisitor.
-rw-r--r--compiler/rustc_ast/src/mut_visit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/mut_visit.rs b/compiler/rustc_ast/src/mut_visit.rs
index 205625573a6..6bf23af81bf 100644
--- a/compiler/rustc_ast/src/mut_visit.rs
+++ b/compiler/rustc_ast/src/mut_visit.rs
@@ -1,5 +1,5 @@
 //! A `MutVisitor` represents an AST modification; it accepts an AST piece and
-//! and mutates it in place. So, for instance, macro expansion is a `MutVisitor`
+//! mutates it in place. So, for instance, macro expansion is a `MutVisitor`
 //! that walks over an AST and modifies it.
 //!
 //! Note: using a `MutVisitor` (other than the `MacroExpander` `MutVisitor`) on