aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/doc/src/qmllanguageref/modules/qqmlextensionplugin.qdocinc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/doc/src/qmllanguageref/modules/qqmlextensionplugin.qdocinc b/src/qml/doc/src/qmllanguageref/modules/qqmlextensionplugin.qdocinc
index ec888ae937..b1fce12dc3 100644
--- a/src/qml/doc/src/qmllanguageref/modules/qqmlextensionplugin.qdocinc
+++ b/src/qml/doc/src/qmllanguageref/modules/qqmlextensionplugin.qdocinc
@@ -33,7 +33,7 @@ called "my.module", you would add the forward declaration in global scope:
\code
void qml_register_types_my_module();
-\code
+\endcode
Then add the following snippet of code in the implementation of any function
that's part of the same binary as the registration:
@@ -41,7 +41,7 @@ that's part of the same binary as the registration:
\code
volatile auto registration = &qml_register_types_my_module;
Q_UNUSED(registration);
-\code
+\endcode
\section1 TimeExample QML extension plugin