Skip to content

Commit

Permalink
Fix examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
munificent committed Oct 10, 2024
1 parent 30b478a commit e0aae3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions working/3616 - enum value shorthand/proposal-simple-lrhn.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ second operand.
Examples of allowed comparisons:

```dart
if (Endian.host == .big); // ok!
if (Endian.host case == .big); // ok!
if (Endian.host == .big) ok!;
if (Endian.host case == .big) ok!;
```

Not allowed:
Expand Down

0 comments on commit e0aae3b

Please sign in to comment.