summaryrefslogtreecommitdiffstats
path: root/src/widgets/doc/src/widgets-tutorial.qdoc
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@digia.com>2014-09-12 08:06:03 +0200
committerMitch Curtis <mitch.curtis@digia.com>2014-09-12 15:27:45 +0200
commitf1093e06b2b2e8fd0685182979499284aec3cb59 (patch)
tree3528531d446d3d42bd9d5ab6fd86dae3e25cd403 /src/widgets/doc/src/widgets-tutorial.qdoc
parent2de8fb5a6c0cc70b6185d4dfc7bcb6e851f29c29 (diff)
Fix typos in Widgets Tutorial.
Change-Id: Id4a0bef3b00f3869582e76ee45f230120189a268 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'src/widgets/doc/src/widgets-tutorial.qdoc')
-rw-r--r--src/widgets/doc/src/widgets-tutorial.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/doc/src/widgets-tutorial.qdoc b/src/widgets/doc/src/widgets-tutorial.qdoc
index d4cf063231..0a80a976b9 100644
--- a/src/widgets/doc/src/widgets-tutorial.qdoc
+++ b/src/widgets/doc/src/widgets-tutorial.qdoc
@@ -36,9 +36,9 @@
Widgets are the basic building blocks for graphical user interface
(GUI) applications built with Qt. Each GUI component (e.g.
- buttons, labels, text editor) is a \l{QWidget}{widget} that is
+ buttons, labels, text editors) is a \l{QWidget}{widget} that is
placed somewhere within a user interface window, or is displayed
- as an independent window. Each type of widge is provided by a
+ as an independent window. Each type of widget is provided by a
subclass of QWidget, which is itself a subclass of QObject.
QWidget is not an abstract class. It can be used as a container
@@ -49,7 +49,7 @@
As with \l{QObject}s, \l{QWidget}s can be created with parent
objects to indicate ownership, ensuring that objects are deleted
when they are no longer used. With widgets, these parent-child
- relationships have an additional meaning: Each child widget is
+ relationships have an additional meaning: each child widget is
displayed within the screen area occupied by its parent widget.
This means that when you delete a window widget, all the child
widgets it contains are also deleted.