diff --git a/doc/src/deployment/deployment.qdoc b/doc/src/deployment/deployment.qdoc
index e2d660c2ca90797582ad73829265cab8ba03b5c7..f4fa01330e422ef73eebb8ffd07d0eec5d1ee781 100644
--- a/doc/src/deployment/deployment.qdoc
+++ b/doc/src/deployment/deployment.qdoc
@@ -99,7 +99,7 @@
         \li \l{Qt Graphical Effects}{QtGraphicalEffects}
     \row
         \li \l{Qt Script}{QtScript}
-        \li QtQuick1 (formerly QtDeclarative)
+        \li \l{Qt Quick 1}{QtDeclarative}
         \li \l{Qt Image Formats}{QtImageFormats}
     \endtable
 
diff --git a/doc/src/qmlapp/porting.qdoc b/doc/src/qmlapp/porting.qdoc
index d0e32884ecfc2fb30cbc99e3b5c25f77e5ebab83..a973696c0b0bec78d9e5f970a03289bd1255443b 100644
--- a/doc/src/qmlapp/porting.qdoc
+++ b/doc/src/qmlapp/porting.qdoc
@@ -241,17 +241,17 @@ For the purposes of porting older applications, the \c {QtDeclarative} module is
 QDeclarativeView or QDeclarativeItem and the Graphics View integration) can use this module. Note
 that new applications should use the new \l {Qt QML} and \l {Qt Quick} modules instead.
 
-To use the \c {Qt Quick 1} module, add "quick1" to your qmake \c .pro file:
+To use the \c {Qt Quick 1} module, add "declarative" to your qmake \c .pro file:
 
 \code
-QT += quick1
+QT += declarative
 \endcode
 
-Required header files can be included from the Qt Quick 1 module:
+Required header files can be included as follows:
 
 \code
-#include <QtQuick1/QDeclarativeView>
-#include <QtQuick1/QDeclarativeItem>
+#include <QtDeclarative/QDeclarativeView>
+#include <QtDeclarative/QDeclarativeItem>
 \endcode
 
 */