Fix comment

This commit is contained in:
Fabien Ménager
2022-10-05 21:31:14 +02:00
committed by GitHub
parent f61a30d013
commit f09eae42d9

View File

@@ -31,7 +31,7 @@ namespace EntityFrameworkCore.Projectables.Generator
private SyntaxNode? VisitThisBaseExpression(CSharpSyntaxNode node)
{
// Swap out the use of this to @this and base to @base and keep leading and trailing trivias
// Swap out the use of this and base to @this and keep leading and trailing trivias
return SyntaxFactory.IdentifierName("@this")
.WithLeadingTrivia(node.GetLeadingTrivia())
.WithTrailingTrivia(node.GetTrailingTrivia());