diff --git a/versioned_docs/version-1.0/language/built-in-functions.mdx b/versioned_docs/version-1.0/language/built-in-functions.mdx index 4627265..4d6d8ad 100644 --- a/versioned_docs/version-1.0/language/built-in-functions.mdx +++ b/versioned_docs/version-1.0/language/built-in-functions.mdx @@ -36,8 +36,9 @@ view fun revertibleRandom(modulo: T): T ``` Returns a pseudo-random integer. -`T` can be any fixed-size unsigned integer type -(`UInt8`, `UInt16`, `UInt128`, `UInt256`, `Word8`, `Word16`, `Word32`, `Word64`). +`T` can be any fixed-size unsigned integer type (`FixedSizeUnsignedInteger`, i.e. +(`UInt8`, `UInt16`, `UInt32`, `UInt64`, `UInt128`, `UInt256`, +`Word8`, `Word16`, `Word32`, `Word64`, `Word128`, `Word256`). The modulo argument is optional. If provided, the returned integer is between `0` and `modulo -1`.