aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-03-24 10:17:10 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2020-03-24 10:23:33 +0100
commitcccc6591863097b87180d57feca036fcbe2582e4 (patch)
treea7e3721180dad915ccd05fa5dded1f0d28bdab21 /tools
parent55a67d9b16aa089134a2636be29de96341efb932 (diff)
qmllint: Fix typo
Fixes: QTBUG-82992 Change-Id: I6cb79b5736f283f68ec0a94c4494e4ca592b16d4 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmllint/scopetree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmllint/scopetree.cpp b/tools/qmllint/scopetree.cpp
index 8c5358c7a5..c47dac3df5 100644
--- a/tools/qmllint/scopetree.cpp
+++ b/tools/qmllint/scopetree.cpp
@@ -386,7 +386,7 @@ bool ScopeTree::recheckIdentifiers(
|| firstElement->m_methods.contains(memberAccessTree->m_name)
|| firstElement->m_enums.contains(memberAccessTree->m_name)) {
colorOut.write("Note: ", Info);
- colorOut.write(memberAccessTree->m_name + QLatin1String(" is a meber of the root element\n"), Normal );
+ colorOut.write(memberAccessTree->m_name + QLatin1String(" is a member of the root element\n"), Normal );
colorOut.write(QLatin1String(" You can qualify the access with its id to avoid this warning:\n"), Normal);
if (rootId == QLatin1String("<id>")) {
colorOut.write("Note: ", Warning);