Browse Source

GDScript: Document `is not` operator

Danil Alexeev 1 year ago
parent
commit
46e69f0d1e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 2 - 2
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() <class_@GDScript_method_is_instance_of>`    |
 |                                       | function.                                                                   |
 +---------------------------------------+-----------------------------------------------------------------------------+