diff --git a/src/websockets/doc/src/index.qdoc b/src/websockets/doc/src/index.qdoc
index 9e1c40c7730271f94e6c509b1336517eef3a3214..4f25589b5aa76e9b34b61649a5c403b5834be141 100644
--- a/src/websockets/doc/src/index.qdoc
+++ b/src/websockets/doc/src/index.qdoc
@@ -41,15 +41,21 @@
     Qt applications to act as a server that can process WebSocket requests,
     or a client that can consume data received from the server, or both.
 
-    To use this module in your application, use the following include
-    statement:
+    \section1 Getting Started
+
+    To include the definitions of the module's classes, use the following directive:
 
     \code
     #include <QtWebSockets/QtWebSockets>
     \endcode
 
-    To link against the module, add this line to your \l qmake \c
-    .pro file:
+    To  import the QML types into your application, use the following import statement in your .qml file:
+
+    \code
+    import QtWebSockets 1.0
+    \endcode
+
+    To link against the module, add this line to your qmake .pro file:
 
     \code
     QT += websockets