Touch up QJSEngine::evaluate documentation.
authorMitch Curtis <mitch.curtis@digia.com>
Mon, 14 Oct 2013 13:40:50 +0000 (15:40 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 14 Oct 2013 14:43:51 +0000 (16:43 +0200)
Change-Id: I350ad1ccb8a6cf522787e4579292fa4ba1c8e043
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
src/qml/jsapi/qjsengine.cpp

index 107ac98..d1bd493 100644 (file)
@@ -241,19 +241,19 @@ void QJSEngine::collectGarbage()
     QJSValue::isError()).
 
     \a lineNumber is used to specify a starting line number for \a
-    program; line number information reported by the engine that pertain
+    program; line number information reported by the engine that pertains
     to this evaluation will be based on this argument. For example, if
     \a program consists of two lines of code, and the statement on the
     second line causes a script exception, the exception line number
     would be \a lineNumber plus one. When no starting line number is
     specified, line numbers will be 1-based.
 
-    \a fileName is used for error reporting. For example in error objects
-    the file name is accessible through the "fileName" property if it's
+    \a fileName is used for error reporting. For example, in error objects
+    the file name is accessible through the "fileName" property if it is
     provided with this function.
 
     \note If an exception was thrown and the exception value is not an
-    Error instance (i.e., QJSValue::isError() returns false), the
+    Error instance (i.e., QJSValue::isError() returns \c false), the
     exception value will still be returned, but there is currently no
     API for detecting that an exception did occur in this case.
 */