1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

class reference proofreading

(cherry picked from commit 8455e901f3)
This commit is contained in:
Paul Joannon
2021-03-18 12:04:28 +01:00
committed by Rémi Verschelde
parent e8e69b2d50
commit 596169d7df
46 changed files with 60 additions and 55 deletions

View File

@@ -956,7 +956,7 @@
<return type="int">
</return>
<description>
Returns a random unsigned 32 bit integer. Use remainder to obtain a random value in the interval [code][0, N - 1][/code] (where N is smaller than 2^32).
Returns a random unsigned 32-bit integer. Use remainder to obtain a random value in the interval [code][0, N - 1][/code] (where N is smaller than 2^32).
[codeblock]
randi() # Returns random integer between 0 and 2^32 - 1
randi() % 20 # Returns random integer between 0 and 19