summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2018-05-05 06:33:11 +0200
committerGitHub <noreply@github.com>2018-05-05 06:33:11 +0200
commitd3927e1e87eebcbe3b62f35daeac4532dc974c3a (patch)
tree637b37c7de8e2039faf21e29958bad089e8937c1
parentaf9a6202ebb1eda4f928d2d601162cf4b211752b (diff)
parent28eb97c8ab9f8b3b44f54af5ff1c8bb22e6bc30e (diff)
Merge pull request #18615 from KellyThomas/version_docs
correct documentation for version number data type
-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 ea3c404346..6384b4d0fd 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