Reflow an overlong comment.

This commit is contained in:
Nicholas Nethercote 2023-07-31 11:21:24 +10:00
parent cfc1aa3c5d
commit a8909b059f
1 changed files with 2 additions and 2 deletions

View File

@ -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();