1
Fork 0

Fix some comment formatting.

This commit is contained in:
Nicholas Nethercote 2024-05-01 09:27:20 +10:00
parent d7f5319b6d
commit c9c964fc37
4 changed files with 16 additions and 12 deletions

View file

@ -505,8 +505,9 @@ impl<'a, 'b> MacroExpander<'a, 'b> {
let (fragment, collected_invocations) =
self.collect_invocations(fragment, &derive_placeholders);
// We choose to expand any derive invocations associated with this macro invocation
// *before* any macro invocations collected from the output fragment
// We choose to expand any derive invocations associated with this macro
// invocation *before* any macro invocations collected from the output
// fragment.
derive_invocations.extend(collected_invocations);
(fragment, derive_invocations)
}