From 6d1819f2f18cf4990d1faf23d9eca691a55b4cb3 Mon Sep 17 00:00:00 2001 From: zacryol <60046681+zacryol@users.noreply.github.com> Date: Sat, 9 Oct 2021 19:41:56 -0600 Subject: [PATCH] Add Format String to operator/precedence list --- tutorials/scripting/gdscript/gdscript_basics.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index 8a84c452b..fd0d773e2 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/tutorials/scripting/gdscript/gdscript_basics.rst @@ -240,7 +240,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 | +------------------------------------------------------------------------+-----------------------------------------+