From 7b8cf1d4fe51bc0dc3ac80f82f7fd6067524ad23 Mon Sep 17 00:00:00 2001 From: asakuno Date: Mon, 14 Oct 2019 14:33:42 +0900 Subject: [PATCH] Directive fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit important 652Line --- getting_started/scripting/gdscript/gdscript_basics.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index 92b98f9bd..3d68fdb44 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/getting_started/scripting/gdscript/gdscript_basics.rst @@ -649,9 +649,9 @@ want to assign consecutive integers to some constant. If you pass a name to the enum, it will put all the keys inside a constant dictionary of that name. -.. important: In Godot 3.1 and later, keys in a named enum are not registered - as global constants. They should be accessed prefixed by the - enum's name (``Name.KEY``); see an example below. +.. important:: In Godot 3.1 and later, keys in a named enum are not registered + as global constants. They should be accessed prefixed by the + enum's name (``Name.KEY``); see an example below. ::