Skip to content

Commit 9e25506

Browse files
committed
Fixed comment to avoid spelling issue.
1 parent 776bed0 commit 9e25506

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

StyleCop.Analyzers/StyleCop.Analyzers/OrderingRules/SA1202ElementsMustBeOrderedByAccess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private static void HandleMemberList(SyntaxNodeAnalysisContext context, SyntaxLi
123123
var currentSyntaxKind = member.Kind();
124124
currentSyntaxKind = currentSyntaxKind == SyntaxKind.EventFieldDeclaration ? SyntaxKind.EventDeclaration : currentSyntaxKind;
125125

126-
// if the syntaxkind of this member (e.g. SyntaxKind.IncompleteMember) will not
126+
// if the SyntaxKind of this member (e.g. SyntaxKind.IncompleteMember) will not
127127
// be handled, skip early.
128128
if (!MemberNames.ContainsKey(currentSyntaxKind))
129129
{

0 commit comments

Comments
 (0)