summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederik Schwarzer <frederik.schwarzer@basyskom.com>2016-08-18 16:39:15 +0200
committerFrederik Schwarzer <frederik.schwarzer@basyskom.com>2016-10-05 15:36:48 +0000
commita0fb03ca2d1fc62cd1a5cabc20d8367a71ce19f1 (patch)
tree6de0b2e65646b5efe3a776b29d426006da8114ef
parentac6aa824bf1c31fc7f8faeade35c188bae128ddc (diff)
downloadqtdoc-a0fb03ca2d1fc62cd1a5cabc20d8367a71ce19f1.tar.gz
gettingstartedqml.qdoc: fix wrong comment markers in tutorial example
Change-Id: Id4e14276ff15ce20364db2fb6921de27d6c3e491 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--doc/src/getting-started/gettingstartedqml.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/getting-started/gettingstartedqml.qdoc b/doc/src/getting-started/gettingstartedqml.qdoc
index 3efd66f6..e70c8b6e 100644
--- a/doc/src/getting-started/gettingstartedqml.qdoc
+++ b/doc/src/getting-started/gettingstartedqml.qdoc
@@ -232,9 +232,9 @@
\c FileMenu.qml.
\code
- import QtQuick 2.3 \\ Import the main Qt QML module
- import "folderName" \\ import the contents of a folder
- import "script.js" as Script \\ Import a Javascript file and name it as Script
+ import QtQuick 2.3 // Import the main Qt QML module
+ import "folderName" // import the contents of a folder
+ import "script.js" as Script // Import a Javascript file and name it as Script
\endcode
The syntax shown above shows how to use the \c import keyword. This is required to