aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc/gettingstarted.rst
diff options
context:
space:
mode:
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.