summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Kvinge <jonas@jkvinge.net>2021-10-09 19:01:36 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-10-12 10:52:37 +0000
commit9b894b5013181e89c4171e53af73ff4d8eacb1fb (patch)
treeabefcb04195e7931d9a89fcc9f4e4102da234c8c
parentcc3c4f1feb5344c047b9f7173676995a2b1f56df (diff)
xml: Fix typos in documentation
Change-Id: Ie2a4df380dc2e519a55db4457bd17e326e62046f Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 5cb48619e2447c573fa681feb8fe03e22efdd02e) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/xml/dom/qdom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/dom/qdom.cpp b/src/xml/dom/qdom.cpp
index 85718cd5e0..a6e2a4b96e 100644
--- a/src/xml/dom/qdom.cpp
+++ b/src/xml/dom/qdom.cpp
@@ -4477,7 +4477,7 @@ QString QDomElement::attributeNS(const QString& nsURI, const QString& localName,
Adds an attribute with the qualified name \a qName and the
namespace URI \a nsURI with the value \a value. If an attribute
with the same local name and namespace URI exists, its prefix is
- replaced by the prefix of \a qName and its value is repaced by \a
+ replaced by the prefix of \a qName and its value is replaced by \a
value.
Although \a qName is the qualified name, the local name is used to
@@ -4700,7 +4700,7 @@ void QDomTextPrivate::save(QTextStream& s, int, int) const
\ingroup xml-tools
You can split the text in a QDomText object over two QDomText
- objecs with splitText().
+ objects with splitText().
For further information about the Document Object Model see
\l{http://www.w3.org/TR/REC-DOM-Level-1/}{Level 1} and