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
Lone ` ` usages
  • Loading branch information
korokd authored and lpil committed May 29, 2024
1 parent 265724d commit 7fd05ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheatsheets/gleam-for-elm-users.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ As Gleam does not treat integers and floats generically, there is a pattern of a
| Not equal | `/=` | `!=` | In Gleam both values must be of the same type |
| Greater than | `>` | `>` | In Gleam both values must be **ints** |
| Greater than | `>` | `>.` | In Gleam both values must be **floats** |
| Greater or equal | `>=` | `>=` | In Gleam both values must be **ints** |
| Greater or equal | `>=` | `>=` | In Gleam both values must be **ints** |
| 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** |
Expand Down

0 comments on commit 7fd05ad

Please sign in to comment.