aboutsummaryrefslogtreecommitdiff
path: root/doc/classes/Engine.xml
diff options
context:
space:
mode:
authorKelly Thomas2018-05-04 22:27:58 +0800
committerRémi Verschelde2018-05-08 09:08:52 +0200
commit196107cd9e3e64edec3c6256b355227d7a2b4452 (patch)
treee2da7b46835ea8a4cb256253195e6e6a43c5b520 /doc/classes/Engine.xml
parent33b78c0ad6a7e5d79714d31f24c7228452e484b0 (diff)
downloadgodot-196107cd9e3e64edec3c6256b355227d7a2b4452.tar.gz
godot-196107cd9e3e64edec3c6256b355227d7a2b4452.tar.zst
godot-196107cd9e3e64edec3c6256b355227d7a2b4452.zip
correct documentation for version number data type
(cherry picked from commit 28eb97c8ab9f8b3b44f54af5ff1c8bb22e6bc30e)
Diffstat (limited to '')
-rw-r--r--doc/classes/Engine.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/Engine.xml b/doc/classes/Engine.xml
index d72e8f740..7c961af7c 100644
--- a/doc/classes/Engine.xml
+++ b/doc/classes/Engine.xml
@@ -46,9 +46,9 @@
<description>
Returns the current engine version information in a Dictionary.
- "major" - Holds the major version number as a String
- "minor" - Holds the minor version number as a String
- "patch" - Holds the patch version number as a String
+ "major" - Holds the major version number as an int
+ "minor" - Holds the minor version number as an int
+ "patch" - Holds the patch version number as an int
"status" - Holds the status (e.g. "beta", "rc1", "rc2", ... "stable") as a String
"build" - Holds the build name (e.g. "custom-build") as a String
"string" - major + minor + patch + status + build in a single String