Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alcalyn committed Mar 25, 2024
1 parent 641b0bd commit adaa04a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/manual/src/language/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ All comparison operators are implemented in terms of `<`, and the following equi

| comparison | implementation |
|--------------|-----------------------|
| *a* `<=` *b* | `! (` *b* `<` *a* `)` |
| *a* `<=` *b* | `! (` *b* `>` *a* `)` |
| *a* `>` *b* | *b* `<` *a* |
| *a* `>=` *b* | `! (` *a* `<` *b* `)` |

Expand Down

0 comments on commit adaa04a

Please sign in to comment.