From 2ed0b1ed14708adc6076872857777a07f66594ca Mon Sep 17 00:00:00 2001 From: Micah Kendall Date: Sat, 26 Nov 2022 23:48:22 +1100 Subject: [PATCH] +overflow in ints --- book/src/language-tour/int.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/book/src/language-tour/int.md b/book/src/language-tour/int.md index 130de243..f56b55ca 100644 --- a/book/src/language-tour/int.md +++ b/book/src/language-tour/int.md @@ -1,8 +1,7 @@ # Int Ints are plutus integers which are arbitrary size. - -So, there is no underflow. Basic arithmetic can be done for O(1) between ints (+,-,*). +So, there is no underflow or overflow. Basic arithmetic can be done for O(1) between ints (+,-,*). ```gleam // A convenient helper function to get the number 7.