From 46e69f0d1e888e2848217d0cf3bd898960c06596 Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Wed, 7 Feb 2024 13:25:33 +0300 Subject: [PATCH] GDScript: Document `is not` operator --- tutorials/scripting/gdscript/gdscript_basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index 32504371fbc..65588bf0a1f 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/tutorials/scripting/gdscript/gdscript_basics.rst @@ -242,8 +242,8 @@ The following is the list of supported operators and their precedence. +---------------------------------------+-----------------------------------------------------------------------------+ | ``await x`` | `Awaiting for signals or coroutines`_ | +---------------------------------------+-----------------------------------------------------------------------------+ -| ``x is Node`` | Type checking | -| | | +| | ``x is Node`` | Type checking | +| | ``x is not Node`` | | | | See also :ref:`is_instance_of() ` | | | function. | +---------------------------------------+-----------------------------------------------------------------------------+