qmllint: Fix typo

Fixes: QTBUG-82992
Change-Id: I6cb79b5736f283f68ec0a94c4494e4ca592b16d4
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
Fabian Kosmale 2020-03-24 10:17:10 +01:00
parent 55a67d9b16
commit cccc659186
1 changed files with 1 additions and 1 deletions

View File

@ -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);