[NFC] Fix typo in comment

Reported-by: Marco Cali <marco.cali@arm.com>
This commit is contained in:
Sven van Haastregt 2021-07-02 11:39:17 +01:00
parent 1a248233a5
commit b77b2201dc
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ private:
Left->Previous && Left->Previous->is(tok::l_paren)) {
// Detect the case where macros are used to generate lambdas or
// function bodies, e.g.:
// auto my_lambda = MARCO((Type *type, int i) { .. body .. });
// auto my_lambda = MACRO((Type *type, int i) { .. body .. });
for (FormatToken *Tok = Left; Tok != CurrentToken; Tok = Tok->Next) {
if (Tok->is(TT_BinaryOperator) &&
Tok->isOneOf(tok::star, tok::amp, tok::ampamp))