diff options
author | Paul Wicking <paul.wicking@qt.io> | 2019-07-31 13:39:52 +0200 |
---|---|---|
committer | Paul Wicking <paul.wicking@qt.io> | 2019-07-31 20:46:30 +0200 |
commit | 4e668dcad5e09db346c41ad7ace8ff705eb8bc3c (patch) | |
tree | 7fe009add81311353d3ca0a332ced1dd6670872e /src/qdoc/cppcodeparser.cpp | |
parent | 409038e8cba0f4032cdcb4bc8f67138306aea168 (diff) | |
download | qttools-4e668dcad5e09db346c41ad7ace8ff705eb8bc3c.tar.gz |
QDoc: Fix typo in warning
Change-Id: If39e90e516017b21454a85bf6a88489f470894ae
Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/qdoc/cppcodeparser.cpp')
-rw-r--r-- | src/qdoc/cppcodeparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/cppcodeparser.cpp b/src/qdoc/cppcodeparser.cpp index a4ce5fa2e..2f5288ba8 100644 --- a/src/qdoc/cppcodeparser.cpp +++ b/src/qdoc/cppcodeparser.cpp @@ -695,7 +695,7 @@ void CppCodeParser::processMetaCommand(const Doc &doc, } else if (command == COMMAND_QTVARIABLE) { node->setQtVariable(arg); if (!node->isModule() && !node->isQmlModule()) - doc.location().warning(tr("Command '\\%1' is only meanigfule in '\\module' and '\\qmlmodule'.") + doc.location().warning(tr("Command '\\%1' is only meaningful in '\\module' and '\\qmlmodule'.") .arg(COMMAND_QTVARIABLE)); } else if (command == COMMAND_NOAUTOLIST) { node->setNoAutoList(true); |