Skip to content

Commit 6a9bf51

Browse files
author
Andrin Meier
committed
fix "ignore once" regression
1 parent a2794f6 commit 6a9bf51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RetailCoder.VBE/Inspections/IgnoreOnceQuickFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public override void Fix()
3232
int commentStart;
3333
if (codeLine.HasComment(out commentStart) && codeLine.Substring(commentStart).StartsWith(ignoreAnnotation))
3434
{
35-
annotationText = codeLine + ' ' + _inspectionName;
35+
annotationText = codeLine + ", " + _inspectionName;
3636
codeModule.ReplaceLine(insertLine - 1, annotationText);
3737
}
3838
else

0 commit comments

Comments
 (0)