Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/classes/@GlobalScope.xml
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@
<method name="max" qualifiers="vararg">
<return type="Variant" />
<description>
Returns the maximum of the given numeric values. This function can take any number of arguments.
Returns the maximum of the given numeric values. This function takes at least 2 arguments.
[codeblock]
max(1, 7, 3, -6, 5) # Returns 7
[/codeblock]
Expand Down Expand Up @@ -723,7 +723,7 @@
<method name="min" qualifiers="vararg">
<return type="Variant" />
<description>
Returns the minimum of the given numeric values. This function can take any number of arguments.
Returns the minimum of the given numeric values. This function takes at least 2 arguments.
[codeblock]
min(1, 7, 3, -6, 5) # Returns -6
[/codeblock]
Expand Down
Loading