Skip to content

Commit

Permalink
Fix typo in sample
Browse files Browse the repository at this point in the history
  • Loading branch information
meziantou authored Jul 4, 2024
1 parent 4b840a7 commit ca34542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Rules/MA0149.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# MA0149 - Use pattern matching instead of inequality operators for discrete value

````c#
value 1= 1; // not compliant
value != 1; // not compliant
value is not 1; // ok
````

0 comments on commit ca34542

Please sign in to comment.