Skip to content

Commit

Permalink
Merge pull request #11 from LilithHafner/patch-1
Browse files Browse the repository at this point in the history
`!===` => `!==` in compare-nothing.yaml hint
  • Loading branch information
pfitzseb authored Apr 27, 2024
2 parents a8d9f7a + f4ddc76 commit 9322f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/lang/correctness/compare-nothing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ rules:
- pattern: ... == nothing
- pattern: nothing != ...
- pattern: ... != nothing
message: comparisons of `nothing` should be made with === or !=== or with isnothing()
message: comparisons of `nothing` should be made with === or !== or with isnothing()
languages: [julia]
severity: ERROR
metadata:
Expand Down

0 comments on commit 9322f67

Please sign in to comment.