From 265724d4c28ae76322bb83edcb800ba7941d2c18 Mon Sep 17 00:00:00 2001 From: Diogo Korok Date: Sun, 26 May 2024 20:34:14 -0300 Subject: [PATCH] (gleam-for-elm-users) Typo on operator comparison table `Less or equal` Gleam operator was showing example of the `Greater or equal` instead --- cheatsheets/gleam-for-elm-users.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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** |