summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-03-05 11:53:12 +0100
committerSergio Ahumada <sahumada@blackberry.com>2014-03-05 19:52:21 +0100
commita23a7a35e251a0af306879548e61d1bad4dafd19 (patch)
treeddf1dc8a3c10bf8f6ef0e7630c192922e275abcc
parentaa5747a5f3b6284caebaf3c8e62ea677ba0fd905 (diff)
Fix typos in comments and documentation
Change-Id: I03d99ae5eb9266195ff9ab1c73b5ebd8e548e6bc Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
-rw-r--r--doc/installerfw-overview.qdoc2
-rw-r--r--doc/installerfw.qdoc2
-rw-r--r--src/libs/installer/graph.h2
-rw-r--r--src/libs/kdtools/kdupdaterpackagesinfo.cpp2
-rw-r--r--tests/test-framework/checker/testrunner/registry.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/installerfw-overview.qdoc b/doc/installerfw-overview.qdoc
index 20ae945e1..a18ca8c6c 100644
--- a/doc/installerfw-overview.qdoc
+++ b/doc/installerfw-overview.qdoc
@@ -77,7 +77,7 @@
Create online installers to be able to promote updates to end users who
install your product. The easiest way to provide an update is to recreate
the repository and upload it to the web server. For large repositories, you
- can update only the the changed components.
+ can update only the changed components.
\section1 Providing Content for Installers
diff --git a/doc/installerfw.qdoc b/doc/installerfw.qdoc
index 9d18361a0..4a85111a5 100644
--- a/doc/installerfw.qdoc
+++ b/doc/installerfw.qdoc
@@ -335,7 +335,7 @@
user-readable output to several languages. To provide end users with
localized versions of strings contained in the component scripts and user
interfaces, create QTranslator files that the installation system loads
- along with the the component. The installer loads the translation file that
+ along with the component. The installer loads the translation file that
matches the current system locale. For example, if the system locale is
German, the de_de.qm file is loaded.
diff --git a/src/libs/installer/graph.h b/src/libs/installer/graph.h
index 59778a440..04fdb941c 100644
--- a/src/libs/installer/graph.h
+++ b/src/libs/installer/graph.h
@@ -144,7 +144,7 @@ private:
foreach (const T &adjacency, edges(node))
visit(adjacency, resolvedNodes, visitedNodes);
- // append this node the the ordered list
+ // append this node to the ordered list
resolvedNodes->append(node);
}
diff --git a/src/libs/kdtools/kdupdaterpackagesinfo.cpp b/src/libs/kdtools/kdupdaterpackagesinfo.cpp
index 80c96dc5a..1e882e173 100644
--- a/src/libs/kdtools/kdupdaterpackagesinfo.cpp
+++ b/src/libs/kdtools/kdupdaterpackagesinfo.cpp
@@ -55,7 +55,7 @@ using namespace KDUpdater;
\brief Provides access to information about packages installed on the application side.
This class parses the XML package file specified via the setFileName() method and
- provides access to the the information defined within the package file through an
+ provides access to the information defined within the package file through an
easy to use API. You can:
\li get application name via the \ref applicationName() method
\li get application version via the \ref applicationVersion() method
diff --git a/tests/test-framework/checker/testrunner/registry.py b/tests/test-framework/checker/testrunner/registry.py
index 430324ad8..ccbab655c 100644
--- a/tests/test-framework/checker/testrunner/registry.py
+++ b/tests/test-framework/checker/testrunner/registry.py
@@ -53,7 +53,7 @@ _registry["HKEY_USERS"] = _winreg.HKEY_USERS
_registry["HKEY_CURRENT_CONFIG"] = _winreg.HKEY_CURRENT_CONFIG
def splitKey( key ):
- key, seperator, subKey = key.partition( '\\' )
+ key, separator, subKey = key.partition( '\\' )
return _registry[key], subKey
def checkKey( key, value, expectedData ):