File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3838const LintCodeDescriptions = Dict {LintCodes,String} (
3939 IncorrectCallArgs => " Possible method call error." ,
4040 IncorrectIterSpec => " A loop iterator has been used that will likely error." ,
41- NothingEquality => " Compare against `nothing` using `=== `" ,
42- NothingNotEq => " Compare against `nothing` using `!== `" ,
41+ NothingEquality => " Compare against `nothing` using `isnothing `" ,
42+ NothingNotEq => " Compare against `nothing` using `!isnothing `" ,
4343 ConstIfCondition => " A boolean literal has been used as the conditional of an if statement - it will either always or never run." ,
4444 EqInIfConditional => " Unbracketed assignment in if conditional statements is not allowed, did you mean to use ==?" ,
4545 PointlessOR => " The first argument of a `||` call is a boolean literal." ,
You can’t perform that action at this time.
0 commit comments