summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJeff Tranter <jtranter@ics.com>2014-01-29 14:18:58 -0500
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-30 15:14:44 +0100
commit61db17af204db5d40e3ae5392c4c134980619e09 (patch)
treedccd60167c5836737e03324f619692cbdcca1738 /examples
parenta7471c9159b254c2d5a21ddd9772fac8fe7d1736 (diff)
downloadqtserialport-61db17af204db5d40e3ae5392c4c134980619e09.tar.gz
Fix some typos in documentation.
Fix some spelling and grammatical errors in comments that show up in Qt documentation. No changes to code. Change-Id: I185458e162d115eac25326d239b851b5e14ed5cf Reviewed-by: Laszlo Papp <lpapp@kde.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/serialport/doc/blockingslave.qdoc2
-rw-r--r--examples/serialport/doc/terminal.qdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/serialport/doc/blockingslave.qdoc b/examples/serialport/doc/blockingslave.qdoc
index c98080d..df35bfc 100644
--- a/examples/serialport/doc/blockingslave.qdoc
+++ b/examples/serialport/doc/blockingslave.qdoc
@@ -62,7 +62,7 @@
leads to simpler code, but because of its blocking behavior, it should only
be used in non-GUI threads to prevent the user interface from freezing.
But contrary to what many think, using threads with QThread does not
- necessarily add unmanagable complexity to your application.
+ necessarily add unmanageable complexity to your application.
This application is a Slave, that demonstrate the work paired with Master
application \l{Blocking Master Example}.
diff --git a/examples/serialport/doc/terminal.qdoc b/examples/serialport/doc/terminal.qdoc
index e74e237..ed8fa02 100644
--- a/examples/serialport/doc/terminal.qdoc
+++ b/examples/serialport/doc/terminal.qdoc
@@ -82,7 +82,7 @@
The serial port is instantiated in the \l{terminal/mainwindow.cpp}{MainWindow}
constructor. The main widget is passed as the parent, so the object deletion
- happens automatically according to the the parent and child mechanism in Qt:
+ happens automatically according to the parent and child mechanism in Qt:
\snippet terminal/mainwindow.cpp 0
\dots