From c73a7ac6709a775f78d4252474f51fbb6f420c62 Mon Sep 17 00:00:00 2001 From: Fabrizio Casati Date: Mon, 30 Dec 2024 00:32:32 +0100 Subject: [PATCH] Fix layout issue in `godot_notifications.rst` There is a layout issue in `godot_notifications.rst`, due to inline code marker not working properly within bold text. --- tutorials/best_practices/godot_notifications.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/best_practices/godot_notifications.rst b/tutorials/best_practices/godot_notifications.rst index 50363f3a5..aea48284c 100644 --- a/tutorials/best_practices/godot_notifications.rst +++ b/tutorials/best_practices/godot_notifications.rst @@ -224,7 +224,7 @@ values will set up according to the following sequence: 1. **Initial value assignment:** the property is assigned its initialization value, or its default value if one is not specified. If a setter exists, it is not used. -2. **``_init()`` assignment:** the property's value is replaced by any assignments +2. ``_init()`` **assignment:** the property's value is replaced by any assignments made in ``_init()``, triggering the setter. 3. **Exported value assignment:** an exported property's value is again replaced by