Skip to content

Commit b8cedf8

Browse files
committed
Docs
1 parent 9e4f76f commit b8cedf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Data/UInt.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ ceil = fromNumber <<< Number.ceil <<< clamp'
231231
round :: Number -> UInt
232232
round = fromNumber <<< Number.round <<< clamp'
233233

234-
-- | Returns whether an `Int53` is an even number.
234+
-- | Returns true if the `UInt` is an even number.
235235
-- |
236236
-- | > even (fromInt 0)
237237
-- | true
@@ -241,7 +241,7 @@ round = fromNumber <<< Number.round <<< clamp'
241241
even :: UInt -> Boolean
242242
even u = u `mod` (fromInt 2) == (fromInt 0)
243243

244-
-- | Returns whether an `Int53` is an odd number.
244+
-- | Returns true if the `UInt` is an odd number.
245245
-- |
246246
-- | > odd (fromInt 0)
247247
-- | false

0 commit comments

Comments
 (0)