about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-07-31 11:21:24 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2023-07-31 11:21:24 +1000
commita8909b059fd7e05fd5906952636e74a0011d8d22 (patch)
treef584da9128f8a4469b2f332d0794c61fb9f5a342
parentcfc1aa3c5dd4ff473130aac99e70aa299221cd36 (diff)
downloadrust-a8909b059fd7e05fd5906952636e74a0011d8d22.tar.gz
rust-a8909b059fd7e05fd5906952636e74a0011d8d22.zip
Reflow an overlong comment.
-rw-r--r--compiler/rustc_expand/src/mbe/macro_rules.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_expand/src/mbe/macro_rules.rs b/compiler/rustc_expand/src/mbe/macro_rules.rs
index 69250b0f23e..251b8fbe4ec 100644
--- a/compiler/rustc_expand/src/mbe/macro_rules.rs
+++ b/compiler/rustc_expand/src/mbe/macro_rules.rs
@@ -456,8 +456,8 @@ pub fn compile_declarative_macro(
         match tt_parser.parse_tt(&mut Cow::Owned(parser), &argument_gram, &mut NoopTracker) {
             Success(m) => m,
             Failure(()) => {
-                // The fast `NoopTracker` doesn't have any info on failure, so we need to retry it with another one
-                // that gives us the information we need.
+                // The fast `NoopTracker` doesn't have any info on failure, so we need to retry it
+                // with another one that gives us the information we need.
                 // For this we need to reclone the macro body as the previous parser consumed it.
                 let retry_parser = create_parser();