summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Weber <niels.weber@theqtcompany.com>2015-11-10 12:38:08 +0100
committerNiels Weber <niels.weber@theqtcompany.com>2015-11-11 06:56:08 +0000
commit58804ad823c57201e8664845f160c5d476d9bd0b (patch)
tree549cf42159b300c106a7b3b7faad471cde1137e5
parente891a56f04b6bc1ba314a9969bf5b61a61dc2c83 (diff)
downloadqt-creator-58804ad823c57201e8664845f160c5d476d9bd0b.tar.gz
Fix two typos in comments
Change-Id: Iacb728715b11ca3a9f82d82cca49889eea9dd59b Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-rw-r--r--tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp b/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp
index 57c9f33823..fcb56fc415 100644
--- a/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp
+++ b/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp
@@ -112,11 +112,11 @@ class BaseTestCase
public:
BaseTestCase(const QByteArray &source, const UseList &expectedUsesMacros = UseList())
{
- // Write source to temprorary file
+ // Write source to temporary file
const QString filePath = QDir::tempPath() + QLatin1String("/file.h");
Tests::TestCase::writeFile(filePath, source);
- // Processs source
+ // Process source
const Document::Ptr document = createDocument(filePath, source);
QVERIFY(document);
Snapshot snapshot;