From af4ee02e9b651a7a16644aacacf73b6875b483ec Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 15 Jan 2026 23:54:53 +0100 Subject: [PATCH] Recommend imperative form for tooltip texts in Editor style guide This follows what the editor has been doing in recent years. --- engine/guidelines/editor_style_guide.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/guidelines/editor_style_guide.rst b/engine/guidelines/editor_style_guide.rst index 959c3a9..762b121 100644 --- a/engine/guidelines/editor_style_guide.rst +++ b/engine/guidelines/editor_style_guide.rst @@ -94,7 +94,7 @@ Control-based node in question. If the tooltip is particularly long (more than ~80 characters), wrap it over several lines by adding line breaks using ``\n``. Tooltips should follow the writing style described above. In addition to this, -use indicative mood instead of imperative mood: +use imperative mood instead of indicative mood: -- **Good:** *Computes global illumination for the selected GIProbe.* -- **Bad:** *Compute global illumination for the selected GIProbe.* +- **Good:** *Compute global illumination for the selected VoxelGI node.* +- **Bad:** *Computes global illumination for the selected VoxelGI node.*