From e1911e735550cd0fd51d6fc6964ff1a6908141ae Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Thu, 2 Nov 2023 11:47:52 +0300 Subject: [PATCH] Fix list of default comment marker keywords --- tutorials/scripting/gdscript/gdscript_basics.rst | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index a6ddac53623..3eeb40f4e5d 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/tutorials/scripting/gdscript/gdscript_basics.rst @@ -544,11 +544,12 @@ considered a comment. In the Godot script editor, special keywords are highlighted within comments to bring the user's attention to specific comments: - - **Critical** *(appears in red)*: ``ALERT``, ``ATTENTION``, ``DANGER``, ``HACK``, - ``SECURITY`` - - **Warning** *(appears in yellow)*: ``BUG``, ``CAUTION``, ``DEPRECATED``, ``FIXME``, - ``TASK``, ``TBD``, ``TODO``, ``WARNING`` - - **Notice** *(appears in green)*: ``NOTE``, ``NOTICE``, ``TEST``, ``TESTING`` + - **Critical** *(appears in red)*: ``ALERT``, ``ATTENTION``, ``CAUTION``, + ``CRITICAL``, ``DANGER``, ``SECURITY`` + - **Warning** *(appears in yellow)*: ``BUG``, ``DEPRECATED``, ``FIXME``, + ``HACK``, ``TASK``, ``TBD``, ``TODO``, ``WARNING`` + - **Notice** *(appears in green)*: ``INFO``, ``NOTE``, ``NOTICE``, ``TEST``, + ``TESTING`` These keywords are case-sensitive, so they must be written in uppercase for them to be recognized: