aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2020-05-07 09:33:22 +0200
committerMitch Curtis <mitch.curtis@qt.io>2020-05-07 10:56:14 +0200
commit8e93bb105fb98749a48325bf849ef5e0232003f5 (patch)
tree8d107fe16a50ffd180df8df76da4fc7dcc559f4b /tools
parentdfa51b69bf1f7a6bb3acc0b5cf406039a9e05e83 (diff)
qmllint: fix typo in output
Change-Id: I5442f90e58fae0ed5b132c0bbabd0161822f85b8 Pick-to: 5.15 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmllint/checkidentifiers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmllint/checkidentifiers.cpp b/tools/qmllint/checkidentifiers.cpp
index fb7aee2a6d..a9bc58661e 100644
--- a/tools/qmllint/checkidentifiers.cpp
+++ b/tools/qmllint/checkidentifiers.cpp
@@ -349,7 +349,7 @@ bool CheckIdentifiers::operator()(const QHash<QString, ScopeTree::ConstPtr> &qml
|| firstElement->methods().contains(memberAccessBase.m_name)
|| firstElement->enums().contains(memberAccessBase.m_name)) {
m_colorOut->write(QLatin1String("Note: "), Info);
- m_colorOut->write(memberAccessBase.m_name + QLatin1String(" is a meber of the root element\n"), Normal );
+ m_colorOut->write(memberAccessBase.m_name + QLatin1String(" is a member of the root element\n"), Normal );
m_colorOut->write(QLatin1String(" You can qualify the access with its id to avoid this warning:\n"), Normal);
if (rootId == QLatin1String("<id>")) {
m_colorOut->write(QLatin1String("Note: "), Warning);