aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc/tutorials/basictutorial
diff options
context:
space:
mode:
authorVenugopal Shivashankar <Venugopal.Shivashankar@qt.io>2019-06-19 14:26:32 +0200
committerVenugopal Shivashankar <Venugopal.Shivashankar@qt.io>2019-06-19 15:49:14 +0200
commit2bc0decca59d867dbf893e34cf9f2ff9745ab603 (patch)
treedb4fd923e2a2bba91cc9597ed7f46457ea159e8e /sources/pyside2/doc/tutorials/basictutorial
parent3a5dc98e1fcd3ac42c92be76689e250dea53d0a0 (diff)
Doc: Fix minor issues
- Removed links to old qml tutorials - Fixed a note with overflowing text - Fixed the order of chapters list in a tutorial Change-Id: Ic42c35271dd161235ed8b08f596100e104f6139e Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside2/doc/tutorials/basictutorial')
-rw-r--r--sources/pyside2/doc/tutorials/basictutorial/widgets.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/sources/pyside2/doc/tutorials/basictutorial/widgets.rst b/sources/pyside2/doc/tutorials/basictutorial/widgets.rst
index 80c137cac..c864e3d47 100644
--- a/sources/pyside2/doc/tutorials/basictutorial/widgets.rst
+++ b/sources/pyside2/doc/tutorials/basictutorial/widgets.rst
@@ -32,8 +32,7 @@ After the creation of the application object, we have created a
# This HTML approach will be valid too!
label = QLabel("<font color=red size=40>Hello World!</font>")
-.. note:: After the creation of the label, we are calling the
-method `show()` to show the label.
+.. note:: After creating the label, we call `show()` on it.
Finally, we call `app.exec_()` to enter the Qt main loop and start
to execute the Qt code. In reality, it is only here where the label