correct documentation for version number data type

(cherry picked from commit 28eb97c8ab)
This commit is contained in:
Kelly Thomas 2018-05-04 22:27:58 +08:00 committed by Rémi Verschelde
parent 33b78c0ad6
commit 196107cd9e
1 changed files with 3 additions and 3 deletions

View File

@ -46,9 +46,9 @@
<description> <description>
Returns the current engine version information in a Dictionary. Returns the current engine version information in a Dictionary.
"major" - Holds the major version number as a String "major" - Holds the major version number as an int
"minor" - Holds the minor version number as a String "minor" - Holds the minor version number as an int
"patch" - Holds the patch version number as a String "patch" - Holds the patch version number as an int
"status" - Holds the status (e.g. "beta", "rc1", "rc2", ... "stable") as a String "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 "build" - Holds the build name (e.g. "custom-build") as a String
"string" - major + minor + patch + status + build in a single String "string" - major + minor + patch + status + build in a single String