Skip to content

Commit 057193d

Browse files
committed
Merge pull request #1634 from sharwell/build-warning
Fix a violation of SA1028 (CodeMustNotContainTrailingWhitespace)
2 parents 96dce3e + 77c99c1 commit 057193d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

StyleCop.Analyzers/StyleCop.Analyzers/SpacingRules/SA1027CodeFixProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public override Task RegisterCodeFixesAsync(CodeFixContext context)
4242
CodeAction.Create(
4343
SpacingResources.SA1027CodeFix,
4444
cancellationToken => GetTransformedDocumentAsync(context.Document, diagnostic, cancellationToken),
45-
nameof(SA1027CodeFixProvider)),
45+
nameof(SA1027CodeFixProvider)),
4646
diagnostic);
4747
}
4848

0 commit comments

Comments
 (0)