summaryrefslogtreecommitdiffstats
path: root/src/xml/doc
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2012-08-16 10:46:42 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-17 22:45:27 +0200
commit64d22311d809a710a5dee9143c7b662e9f2b20ec (patch)
tree4d9859ddeb65bb93e47c29cffd000f2d211af45d /src/xml/doc
parent751743af4bb80de65399e381d344a2af0968b895 (diff)
Doc: Fix spelling errors
Change-Id: Ibae8d10183f6b15a16b1499daa2df8802dbb014e Reviewed-by: Geir Vattekar <geir.vattekar@nokia.com>
Diffstat (limited to 'src/xml/doc')
-rw-r--r--src/xml/doc/src/xml-processing.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xml/doc/src/xml-processing.qdoc b/src/xml/doc/src/xml-processing.qdoc
index 56fa93990f..a131b60f89 100644
--- a/src/xml/doc/src/xml-processing.qdoc
+++ b/src/xml/doc/src/xml-processing.qdoc
@@ -172,7 +172,7 @@
\endlist
With the Qt XML classes elements and attributes can be accessed in two
- ways: either by refering to their qualified names consisting of the
+ ways: either by referring to their qualified names consisting of the
namespace prefix and the "real" name (or \e local name) or by the
combination of local name and namespace URI.
@@ -191,7 +191,7 @@
\li A \e {namespace prefix} in a qualified name
is the part to the left of the ":". (\e book is the namespace prefix in
\e book:title.)
- \li The \e {local part} of a name (also refered to as the \e {local
+ \li The \e {local part} of a name (also referred to as the \e {local
name}) appears to the right of the ":". (Thus \e title is the
local part of \e book:title.)
\li The \e {namespace URI} ("Uniform Resource Identifier") is a unique
@@ -254,7 +254,7 @@
The pendent to QXmlStreamReader is QXmlStreamWriter, which provides an XML
writer with a simple streaming API. QXmlStreamWriter operates on a
- QIODevice and has specialised functions for all XML tokens or events you
+ QIODevice and has specialized functions for all XML tokens or events you
want to write, such as \l{QXmlStreamWriter::writeDTD()}{writeDTD()},
\l{QXmlStreamWriter::writeCharacters()}{writeCharacters()},
\l{QXmlStreamWriter::writeComment()}{writeComment()} and so on.