We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2794f6 commit 6a9bf51Copy full SHA for 6a9bf51
RetailCoder.VBE/Inspections/IgnoreOnceQuickFix.cs
@@ -32,7 +32,7 @@ public override void Fix()
32
int commentStart;
33
if (codeLine.HasComment(out commentStart) && codeLine.Substring(commentStart).StartsWith(ignoreAnnotation))
34
{
35
- annotationText = codeLine + ' ' + _inspectionName;
+ annotationText = codeLine + ", " + _inspectionName;
36
codeModule.ReplaceLine(insertLine - 1, annotationText);
37
}
38
else
0 commit comments