Browse Source

Add Format String to operator/precedence list

zacryol 3 years ago
parent
commit
e4e8b5b582
1 changed files with 3 additions and 1 deletions
  1. 3 1
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 3 - 1
getting_started/scripting/gdscript/gdscript_basics.rst

@@ -247,7 +247,9 @@ The following is the list of supported operators and their precedence.
 |                                                                        | as C++. Integer division is truncated   |
 |                                                                        | rather than returning a fractional      |
 |                                                                        | number, and the % operator is only      |
-|                                                                        | available for ints ("fmod" for floats)  |
+|                                                                        | available for ints ("fmod" for floats), |
+|                                                                        | and is additionally used for Format     |
+|                                                                        | Strings                                 |
 +------------------------------------------------------------------------+-----------------------------------------+
 | ``+``                                                                  | Addition / Concatenation of arrays      |
 +------------------------------------------------------------------------+-----------------------------------------+