Minor code style update

This commit is contained in:
JeremyStar™ 2024-04-08 02:43:15 +02:00
parent 76a6c274a4
commit 7e75bc6638
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -47,7 +47,7 @@ var some_string: String = ""
var various_types: Variant var various_types: Variant
# Please set the containing type for arrays, unless an array can contain multiple types # Please set the containing type for arrays, unless an array can contain multiple types
var some_array: Array[String] = [ "some", "string" ] var some_array: Array[String] = [ "some", "string" ]
# Dictionaries must be nicely formatted # Dictionaries and Arrays must be nicely formatted
var dict_of_fruits: Dictionary = { "fruits": ["apple", "banana", "orange"], "good_fruits": { "apple": "Tastes good, available pretty much everywhere", "orange": "Nice." }, "bad_fruits": { "banana": "Does not taste good." } } var dict_of_fruits: Dictionary = { "fruits": ["apple", "banana", "orange"], "good_fruits": { "apple": "Tastes good, available pretty much everywhere", "orange": "Nice." }, "bad_fruits": { "banana": "Does not taste good." } }
# For duplication example, ignore # For duplication example, ignore