summaryrefslogtreecommitdiffstats
path: root/src/dbus/doc
diff options
context:
space:
mode:
authorAndreas Eliasson <andreas.eliasson@qt.io>2022-02-08 10:33:39 +0100
committerAndreas Eliasson <andreas.eliasson@qt.io>2022-02-09 15:17:53 +0100
commit5cd8d217b408c8b47bfa1f77d9a98c9a1c3c72ed (patch)
tree4ddec38797288bf671d36a1fa93539547fa19c72 /src/dbus/doc
parentde47400387d35a66f790c0ad21c015f8c3a4ef10 (diff)
Doc: Fix minor grammar issues in qtdbus-index
Task-number: QTBUG-100369 Pick-to: 6.3 Change-Id: Id224b7838b49934b46f00ea44c67aa1c201648d6 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/dbus/doc')
-rw-r--r--src/dbus/doc/src/qtdbus-index.qdoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dbus/doc/src/qtdbus-index.qdoc b/src/dbus/doc/src/qtdbus-index.qdoc
index dd03ba595f..8ad56ed996 100644
--- a/src/dbus/doc/src/qtdbus-index.qdoc
+++ b/src/dbus/doc/src/qtdbus-index.qdoc
@@ -56,7 +56,7 @@
\section1 The Buses
- D-Bus buses are used to when many-to-many communication is
+ D-Bus buses are used when many-to-many communication is
desired. In order to achieve that, a central server is launched
before any applications can connect to the bus: this server is
responsible for keeping track of the applications that are
@@ -71,7 +71,7 @@
For example, an application wishing to query the list of hardware
devices attached to the computer will probably communicate to a
service available on the system bus, while the service providing
- opening of the user's web browser will be probably found on the
+ opening of the user's web browser will probably be found on the
session bus.
On the system bus, one can also expect to find restrictions on
@@ -135,10 +135,10 @@
Like network hosts, applications provide specific services to
other applications by exporting objects. Those objects are
- hierarchically organised, much like the parent-child
+ hierarchically organized, much like the parent-child
relationship that classes derived from QObject possess. One
difference, however, is that there is the concept of "root
- object", that all objects have as ultimate parent.
+ object", which all objects have as the ultimate parent.
If we continue our analogy with Web services, object paths
equate to the path part of a URL:
@@ -156,7 +156,7 @@
Interfaces are similar to C++ abstract classes and Java's
\c interface keyword and declare the "contract" that is
established between caller and callee. That is, they establish
- the names of the methods, signals and properties that are
+ the names of the methods, signals, and properties that are
available as well as the behavior that is expected from either
side when communication is established.