Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrusNajmabadi authored Nov 22, 2024
1 parent 9ce3c82 commit 56b2cde
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ private static SyntaxTokenList GenerateModifiers(CodeGenerationDestination desti
{
// If these appear in interfaces they must be static abstract
return destination is CodeGenerationDestination.InterfaceType
? [StaticKeyword, AbstractKeyword]
: [PublicKeyword, StaticKeyword];
? ([StaticKeyword, AbstractKeyword])
: ([PublicKeyword, StaticKeyword]);
}
}
}

0 comments on commit 56b2cde

Please sign in to comment.