aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/tutorials/basictutorial/uifiles.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/doc/tutorials/basictutorial/uifiles.rst')
-rw-r--r--sources/pyside6/doc/tutorials/basictutorial/uifiles.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/doc/tutorials/basictutorial/uifiles.rst b/sources/pyside6/doc/tutorials/basictutorial/uifiles.rst
index fa483a302..579fc5ebb 100644
--- a/sources/pyside6/doc/tutorials/basictutorial/uifiles.rst
+++ b/sources/pyside6/doc/tutorials/basictutorial/uifiles.rst
@@ -112,7 +112,7 @@ To understand the idea, let's take a look at the whole code:
window = MainWindow()
window.show()
- sys.exit(app.exec_())
+ sys.exit(app.exec())
What is inside the *if* statement is already known from the previous
examples, and our new basic class contains only two new lines
@@ -177,7 +177,7 @@ The complete code of this example looks like this:
sys.exit(-1)
window.show()
- sys.exit(app.exec_())
+ sys.exit(app.exec())
Then to execute it we just need to run the following on a
command prompt: