diff --git a/cheatsheets/gleam-for-elm-users.md b/cheatsheets/gleam-for-elm-users.md index 92cd12b8..c1dcf472 100644 --- a/cheatsheets/gleam-for-elm-users.md +++ b/cheatsheets/gleam-for-elm-users.md @@ -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** |