Skip to content

Commit

Permalink
(gleam-for-elm-users) Typo on operator comparison table
Browse files Browse the repository at this point in the history
`Less or equal` Gleam operator was showing example of the
`Greater or equal` instead
  • Loading branch information
korokd authored and lpil committed May 29, 2024
1 parent c03e412 commit 265724d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cheatsheets/gleam-for-elm-users.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ As Gleam does not treat integers and floats generically, there is a pattern of a
| Greater or equal | `>=` | `>=.` | In Gleam both values must be **floats** |
| Less than | `<` | `<` | In Gleam both values must be **ints** |
| Less than | `<` | `<.` | In Gleam both values must be **floats** |
| Less or equal | `<=` | `>=` | In Gleam both values must be **ints** |
| Less or equal | `<=` | `>=.` | In Gleam both values must be **floats** |
| Less or equal | `<=` | `<=` | In Gleam both values must be **ints** |
| Less or equal | `<=` | `<=.` | In Gleam both values must be **floats** |
| Boolean and | `&&` | `&&` | In Gleam both values must be **bools** |
| Boolean or | `||` | `||` | In Gleam both values must be **bools** |
| Add | `+` | `+` | In Gleam both values must be **ints** |
Expand Down

0 comments on commit 265724d

Please sign in to comment.