From 3b11c2f5abbd959f62aaea939fe83f7ddf250006 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 14 Sep 2025 22:46:50 +0200 Subject: [PATCH] Fix code block highlighting in Logging Some blocks were using syntax highlighting when they shouldn't. --- tutorials/scripting/logging.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/scripting/logging.rst b/tutorials/scripting/logging.rst index 4bc763afe..ee6a1ecd3 100644 --- a/tutorials/scripting/logging.rst +++ b/tutorials/scripting/logging.rst @@ -108,7 +108,7 @@ Crash backtraces When the project crashes, a crash backtrace is printed to the standard error stream. This is what it can look like in a build with debug symbols: -:: +.. code-block:: none ================================================================ handle_crash: Program crashed with signal 4 @@ -135,7 +135,7 @@ it can look like in a build with debug symbols: On the other hand, without debug symbols, it will look like this instead: -:: +.. code-block:: none ================================================================ handle_crash: Program crashed with signal 4 @@ -256,7 +256,7 @@ or :ref:`push_warning() ` in as the original message. This message is not available in the custom logger, which is what prevents infinite recursion from occurring: -:: +.. code-block:: none While attempting to print a message, another message was printed: ...