summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/doc_classes
diff options
context:
space:
mode:
authorDanil Alexeev <danil@alexeev.xyz>2023-03-03 17:42:32 +0300
committerDanil Alexeev <danil@alexeev.xyz>2023-03-05 17:03:20 +0300
commitea5fd3d732a85029e8372425904971ad26153ff1 (patch)
tree0ce81c0016d8f3840c22e9bf2d1be2bdd47140ea /modules/gdscript/doc_classes
parent61d2c855114c824f5ca27ded0a1fa71cc7b21134 (diff)
downloadredot-engine-ea5fd3d732a85029e8372425904971ad26153ff1.tar.gz
Fix GDScript code style regarding colon
Diffstat (limited to 'modules/gdscript/doc_classes')
-rw-r--r--modules/gdscript/doc_classes/@GDScript.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml
index 124c8be3e0..718bf3f6d4 100644
--- a/modules/gdscript/doc_classes/@GDScript.xml
+++ b/modules/gdscript/doc_classes/@GDScript.xml
@@ -285,7 +285,7 @@
@export var string = ""
@export var int_number = 5
@export var float_number: float = 5
- @export var image : Image
+ @export var image: Image
[/codeblock]
</description>
</annotation>
@@ -309,7 +309,7 @@
Export a [Color] property without allowing its transparency ([member Color.a]) to be edited.
See also [constant PROPERTY_HINT_COLOR_NO_ALPHA].
[codeblock]
- @export_color_no_alpha var dye_color : Color
+ @export_color_no_alpha var dye_color: Color
[/codeblock]
</description>
</annotation>