aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrozen <355847+Frozen@users.noreply.github.com>2024-06-22 21:41:16 -0400
committerLouis Pilfold <louis@lpil.uk>2024-06-23 12:53:11 +0100
commite5c3a0d8cf2d631c4e74dc02b14f5d82b3ed15af (patch)
tree7a2f251fd4cd7f7c77ae3454f6739865a4ead07f
parent8f38551c6060bf1afb2a56acc14143abd5263392 (diff)
downloadgleam_stdlib-e5c3a0d8cf2d631c4e74dc02b14f5d82b3ed15af.tar.gz
gleam_stdlib-e5c3a0d8cf2d631c4e74dc02b14f5d82b3ed15af.zip
fixed typo in docs for absolute_value func in ints module
-rw-r--r--src/gleam/int.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/int.gleam b/src/gleam/int.gleam
index c55a514..f668a42 100644
--- a/src/gleam/int.gleam
+++ b/src/gleam/int.gleam
@@ -19,7 +19,7 @@ import gleam/order.{type Order}
///
/// ```gleam
/// absolute_value(-12)
-/// // -> 2
+/// // -> 12
/// ```
///
/// ```gleam