aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc/gettingstarted.rst
diff options
context:
space:
mode:
authorVenugopal Shivashankar <Venugopal.Shivashankar@qt.io>2018-04-25 11:42:28 +0200
committerVenugopal Shivashankar <Venugopal.Shivashankar@qt.io>2018-04-30 09:07:48 +0000
commit1d6bad63bcb6720078de1e78c1b495bf08d1c65b (patch)
treeadeb4135abb17af9d5cd88e1081d7ef365b3c89d /sources/pyside2/doc/gettingstarted.rst
parent8f7d78ce992943f4bac0c70ace96a52a8dd72ecf (diff)
Doc: Use product name and python module names appropriately
Configured replaceable text entities so that updating instances of product and module names in the doc is less cumbersome. Change-Id: I6ef8adcc4324775eeb8a48bf81294effb0ea12d5 Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside2/doc/gettingstarted.rst')
-rw-r--r--sources/pyside2/doc/gettingstarted.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside2/doc/gettingstarted.rst b/sources/pyside2/doc/gettingstarted.rst
index bb58c1734..55212b1ba 100644
--- a/sources/pyside2/doc/gettingstarted.rst
+++ b/sources/pyside2/doc/gettingstarted.rst
@@ -33,7 +33,8 @@ guide you through the development process:
import random
from PySide2 import QtCore, QtWidgets, QtGui
- These imports should provide access to the APIs specific to those Qt modules.
+ The |pymodname| Python module provides access to the Qt APIs as its submodule.
+ In this case, you are importing the :code:`QtCore`, :code:`QtWidgets`, and :code:`QtGui` submodules.
* Define a class named :code:`MyWidget`, which extends QWidget and includes a QPushButton and QLabel.