Skip to content

Commit 1f09009

Browse files
authored
Hello, World comma
1 parent 46e1129 commit 1f09009

File tree

1 file changed

+2
-2
lines changed
  • pyqt-calculator-tutorial/examples

1 file changed

+2
-2
lines changed

pyqt-calculator-tutorial/examples/hello.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Simple Hello World example with PyQt6."""
1+
"""Simple Hello, World example with PyQt6."""
22

33
import sys
44

@@ -19,7 +19,7 @@
1919
window = QWidget()
2020
window.setWindowTitle("PyQt App")
2121
window.setGeometry(WIN_X, WIN_Y, WIDTH, HEIGHT)
22-
helloMsg = QLabel("<h1>Hello World!</h1>", parent=window)
22+
helloMsg = QLabel("<h1>Hello, World!</h1>", parent=window)
2323
helloMsg.move(LABEL_X, LABEL_Y)
2424

2525
# 4.Show your application's GUI

0 commit comments

Comments
 (0)