From c03e4120a7619738baa270755c640d39f71314e2 Mon Sep 17 00:00:00 2001 From: Diogo Korok Date: Sun, 26 May 2024 20:32:48 -0300 Subject: [PATCH] (gleam-for-elm-users) Typo on paragraph about operators "as" should be "are" --- cheatsheets/gleam-for-elm-users.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheatsheets/gleam-for-elm-users.md b/cheatsheets/gleam-for-elm-users.md index 8108e72a..92cd12b8 100644 --- a/cheatsheets/gleam-for-elm-users.md +++ b/cheatsheets/gleam-for-elm-users.md @@ -395,7 +395,7 @@ Elm has a built-in `number` concept that allows it to treat `Int` and `Float` ge #### Gleam -Operators in Gleam as not generic over `Int` and `Float` so there are separate symbols for `Int` and `Float` operations. For example, `+` adds integers together whilst `+.` adds floats together. The pattern of the additional `.` extends to the other common operators. +Operators in Gleam are not generic over `Int` and `Float` so there are separate symbols for `Int` and `Float` operations. For example, `+` adds integers together whilst `+.` adds floats together. The pattern of the additional `.` extends to the other common operators. Additionally, underscores can be added to both integers and floats for clarity.