summaryrefslogtreecommitdiffstats
path: root/src/corelib/json/qjsondocument.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/json/qjsondocument.cpp')
-rw-r--r--src/corelib/json/qjsondocument.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/json/qjsondocument.cpp b/src/corelib/json/qjsondocument.cpp
index 05d57e2ab9..4806ac68d6 100644
--- a/src/corelib/json/qjsondocument.cpp
+++ b/src/corelib/json/qjsondocument.cpp
@@ -372,7 +372,7 @@ QJsonDocument QJsonDocument::fromJson(const QByteArray &json, QJsonParseError *e
}
/*!
- Returns true if the document doesn't contain any data.
+ Returns \c true if the document doesn't contain any data.
*/
bool QJsonDocument::isEmpty() const
{
@@ -403,7 +403,7 @@ QByteArray QJsonDocument::toBinaryData() const
}
/*!
- Returns true if the document contains an array.
+ Returns \c true if the document contains an array.
\sa array(), isObject()
*/
@@ -417,7 +417,7 @@ bool QJsonDocument::isArray() const
}
/*!
- Returns true if the document contains an object.
+ Returns \c true if the document contains an object.
\sa object(), isArray()
*/
@@ -549,7 +549,7 @@ bool QJsonDocument::operator==(const QJsonDocument &other) const
*/
/*!
- returns true if this document is null.
+ returns \c true if this document is null.
Null documents are documents created through the default constructor.