Skip to content

Commit

Permalink
syntax fix from last cleanup commits
Browse files Browse the repository at this point in the history
  • Loading branch information
bergmeister committed Feb 8, 2018
1 parent 7310387 commit 4078e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rules/PossibleIncorrectUsageOfAssignmentOperator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
if (fileRedirectionAst != null)
{
yield return new DiagnosticRecord(
Strings.PossibleIncorrectUsageOfComparisonOperatorFileRedirectionOperatorError, fileRedirectionAst.Extent
Strings.PossibleIncorrectUsageOfComparisonOperatorFileRedirectionOperatorError, fileRedirectionAst.Extent,
GetName(), DiagnosticSeverity.Warning, fileName);
}
}
Expand Down

0 comments on commit 4078e41

Please sign in to comment.