diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-07-31 11:21:24 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-07-31 11:21:24 +1000 |
| commit | a8909b059fd7e05fd5906952636e74a0011d8d22 (patch) | |
| tree | f584da9128f8a4469b2f332d0794c61fb9f5a342 | |
| parent | cfc1aa3c5dd4ff473130aac99e70aa299221cd36 (diff) | |
| download | rust-a8909b059fd7e05fd5906952636e74a0011d8d22.tar.gz rust-a8909b059fd7e05fd5906952636e74a0011d8d22.zip | |
Reflow an overlong comment.
| -rw-r--r-- | compiler/rustc_expand/src/mbe/macro_rules.rs | 4 |
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(); |
