aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2023-08-30 16:18:54 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2023-08-30 18:42:43 +0200
commita49424857342c0569f3dcc3937a4b5b387a0a45e (patch)
tree4618a0fed7f29477c5356d966ee68abfe480f2cf
parent0f683a95d1462711a43f2b022ddeee189a03bf6c (diff)
qmldom: ASTDumper: fix typo
Pick-to: 6.6 Fixes: QTBUG-116617 Change-Id: I09e493096670395b7187263a9dfd789b185d8a96 Reviewed-by: Sami Shalayel <sami.shalayel@qt.io>
-rw-r--r--src/qmldom/qqmldomastdumper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmldom/qqmldomastdumper.cpp b/src/qmldom/qqmldomastdumper.cpp
index 17344112ea..545d0be820 100644
--- a/src/qmldom/qqmldomastdumper.cpp
+++ b/src/qmldom/qqmldomastdumper.cpp
@@ -338,7 +338,7 @@ public:
void endVisit(AST::ThisExpression *) override { stop(u"ThisExpression"); }
bool visit(AST::IdentifierExpression *el) override {
- start(QLatin1String("IdentifierExpression name=%1 identiferToken=%2")
+ start(QLatin1String("IdentifierExpression name=%1 identifierToken=%2")
.arg(quotedString(el->name), loc(el->identifierToken)));
return true;
}