aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 b5b5da9..2630254 100644
--- a/src/gleam/int.gleam
+++ b/src/gleam/int.gleam
@@ -562,7 +562,7 @@ pub fn random(max: Int) -> Int {
///
/// ```gleam
/// divide(0, 1)
-/// // -> Ok(1)
+/// // -> Ok(0)
/// ```
///
/// ```gleam