aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc
diff options
context:
space:
mode:
authorYuya Nishihara <yuya.nishihara@qt.io>2020-06-03 15:44:01 +0900
committerYuya Nishihara <yuya.nishihara@qt.io>2020-06-12 10:46:08 +0900
commita3a734162bcfc7cd73d911644c0c9c4e30428b48 (patch)
tree924a0b354d43de0fa671e027e674dbcaa7f1aa71 /src/qml/doc
parent132e2fb2bf28c6aa3c1598deecf4d723f83396ec (diff)
Doc: Clarify exact range of QML int value
The original definition "around -2000000000 to around 2000000000" was unscientific and would make a false impression that full 32bit integer range wouldn't be supported. Change-Id: I712eb35dee05410f50572a12af98365013efeb62 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/doc')
-rw-r--r--src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc b/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc
index 53984a440d..ae34138b04 100644
--- a/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc
+++ b/src/qml/doc/src/qmllanguageref/typesystem/basictypes.qdoc
@@ -137,7 +137,7 @@ property is only invoked when the property is reassigned to a different object v
The \c int type refers to a whole number, e.g. 0, 10, or -20.
- The possible \c int values range from around -2000000000 to around 2000000000,
+ The possible \c int values range from -2147483648 to 2147483647,
although most types will only accept a reduced range (which they
mention in their documentation).