summaryrefslogtreecommitdiff
path: root/src/libs/qmljs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/qmljs')
-rw-r--r--src/libs/qmljs/qmljsevaluate.cpp4
-rw-r--r--src/libs/qmljs/qmljsinterpreter.cpp8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/libs/qmljs/qmljsevaluate.cpp b/src/libs/qmljs/qmljsevaluate.cpp
index 79f6f35e28..78fc410fa2 100644
--- a/src/libs/qmljs/qmljsevaluate.cpp
+++ b/src/libs/qmljs/qmljsevaluate.cpp
@@ -56,8 +56,8 @@ using namespace QmlJS;
Example: In a scope where "var a = 1"
\list
- \o value(Identifier-a) will return NumberValue
- \o reference(Identifier-a) will return the ASTVariableReference for the declaration of "a"
+ \li value(Identifier-a) will return NumberValue
+ \li reference(Identifier-a) will return the ASTVariableReference for the declaration of "a"
\endlist
*/
diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp
index ce4b8101dc..6627242ace 100644
--- a/src/libs/qmljs/qmljsinterpreter.cpp
+++ b/src/libs/qmljs/qmljsinterpreter.cpp
@@ -80,10 +80,10 @@ using namespace QmlJS::AST;
Values are the result of many operations in the QmlJS code model:
\list
- \o \l{Evaluate}
- \o Context::lookupType() and Context::lookupReference()
- \o ScopeChain::lookup()
- \o ObjectValue::lookupMember()
+ \li \l{Evaluate}
+ \li Context::lookupType() and Context::lookupReference()
+ \li ScopeChain::lookup()
+ \li ObjectValue::lookupMember()
\endlist
*/