From 7d5fb4e6a25a0ae9e59da48fab44572751e16a5e Mon Sep 17 00:00:00 2001 From: Max Hilbrunner Date: Thu, 23 Mar 2023 03:13:29 +0100 Subject: [PATCH] Various fixups --- _extensions/gdscript.py | 1 - tutorials/scripting/gdextension/gdextension_cpp_example.rst | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/_extensions/gdscript.py b/_extensions/gdscript.py index ef90732b0..9ea18aeb8 100644 --- a/_extensions/gdscript.py +++ b/_extensions/gdscript.py @@ -331,7 +331,6 @@ class GDScriptLexer(RegexLexer): "Color", "RID", "Object", - "NodePath", "Dictionary", "Array", "PackedByteArray", diff --git a/tutorials/scripting/gdextension/gdextension_cpp_example.rst b/tutorials/scripting/gdextension/gdextension_cpp_example.rst index 6272d434e..d4e029cea 100644 --- a/tutorials/scripting/gdextension/gdextension_cpp_example.rst +++ b/tutorials/scripting/gdextension/gdextension_cpp_example.rst @@ -616,7 +616,7 @@ node. In the **Node** dock, we can find our new signal and link it up by pressin the **Connect** button or double-clicking the signal. We've added a script on our main node and implemented our signal like this: -.. code-block:: GDScript +.. code-block:: gdscript extends Node