aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsapi/qjsmanagedvalue.cpp
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2021-01-06 17:30:42 +0100
committerNico Vertriest <nico.vertriest@qt.io>2021-01-07 08:16:09 +0000
commit4a89435cf50df0fb59a1f7bd9175eb72046a17c5 (patch)
tree9bd84f6931eeab511a71454b558be665c4026fd9 /src/qml/jsapi/qjsmanagedvalue.cpp
parent0d71722fdb42c64f0b0fb86c111e89d50068f6be (diff)
Doc: Fix typos ECMA-26 and boolean value quoting
Pick-to: 6.0 Change-Id: I1bf34b68ecfa2d6eb8e687a0b12def5e7c96c318 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/qml/jsapi/qjsmanagedvalue.cpp')
-rw-r--r--src/qml/jsapi/qjsmanagedvalue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsapi/qjsmanagedvalue.cpp b/src/qml/jsapi/qjsmanagedvalue.cpp
index 31b28fd690..49088d6d0c 100644
--- a/src/qml/jsapi/qjsmanagedvalue.cpp
+++ b/src/qml/jsapi/qjsmanagedvalue.cpp
@@ -107,7 +107,7 @@ QT_BEGIN_NAMESPACE
* \enum QJSManagedValue::Type
*
* This enum represents the JavaScript native types, as specified by
- * \l{ECMA-26}.
+ * \l{ECMA-262}.
*
* \value Undefined The \c undefined type
* \value Boolean The \c boolean type
@@ -789,7 +789,7 @@ void QJSManagedValue::setProperty(const QString &name, const QJSValue &value)
/*!
* Deletes the property \a name from this QJSManagedValue. Returns \c true if
- * the deletion succeeded, or \a false otherwise.
+ * the deletion succeeded, or \c false otherwise.
*/
bool QJSManagedValue::deleteProperty(const QString &name)
{
@@ -894,7 +894,7 @@ void QJSManagedValue::setProperty(quint32 arrayIndex, const QJSValue &value)
/*!
* Deletes the value stored at \a arrayIndex from this QJSManagedValue. Returns
- * \c true if the deletion succeeded, or \a false otherwise.
+ * \c true if the deletion succeeded, or \c false otherwise.
*/
bool QJSManagedValue::deleteProperty(quint32 arrayIndex)
{