Skip to content

Commit 9d2bd35

Browse files
authored
Merge pull request godotengine#8376 from dalexeev/fix-list-default-comment-marker-keywords
Fix list of default comment marker keywords
2 parents 6823400 + e1911e7 commit 9d2bd35

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tutorials/scripting/gdscript/gdscript_basics.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -544,11 +544,12 @@ considered a comment.
544544
In the Godot script editor, special keywords are highlighted within comments
545545
to bring the user's attention to specific comments:
546546

547-
- **Critical** *(appears in red)*: ``ALERT``, ``ATTENTION``, ``DANGER``, ``HACK``,
548-
``SECURITY``
549-
- **Warning** *(appears in yellow)*: ``BUG``, ``CAUTION``, ``DEPRECATED``, ``FIXME``,
550-
``TASK``, ``TBD``, ``TODO``, ``WARNING``
551-
- **Notice** *(appears in green)*: ``NOTE``, ``NOTICE``, ``TEST``, ``TESTING``
547+
- **Critical** *(appears in red)*: ``ALERT``, ``ATTENTION``, ``CAUTION``,
548+
``CRITICAL``, ``DANGER``, ``SECURITY``
549+
- **Warning** *(appears in yellow)*: ``BUG``, ``DEPRECATED``, ``FIXME``,
550+
``HACK``, ``TASK``, ``TBD``, ``TODO``, ``WARNING``
551+
- **Notice** *(appears in green)*: ``INFO``, ``NOTE``, ``NOTICE``, ``TEST``,
552+
``TESTING``
552553

553554
These keywords are case-sensitive, so they must be written in uppercase for them
554555
to be recognized:

0 commit comments

Comments
 (0)