aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authormelvo <melvo@olomono.de>2021-02-17 18:53:52 +0100
committerGitHub <noreply@github.com>2021-02-17 18:53:52 +0100
commit4c609a7c69e481798ef4fd0556d40881a24c2cc6 (patch)
treef7c455a12e2b7f9d8bf33b7485a9d04d23da5f62 /src/client
parent1a0399819804d6cd86732159d5e46d8d1e453e91 (diff)
downloadqxmpp-4c609a7c69e481798ef4fd0556d40881a24c2cc6.tar.gz
Improve wording in method documentation (#330)
Diffstat (limited to 'src/client')
-rw-r--r--src/client/QXmppClient.h6
-rw-r--r--src/client/QXmppRosterManager.h2
-rw-r--r--src/client/QXmppVCardManager.h2
-rw-r--r--src/client/QXmppVersionManager.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/client/QXmppClient.h b/src/client/QXmppClient.h
index 0afe6235..41d74287 100644
--- a/src/client/QXmppClient.h
+++ b/src/client/QXmppClient.h
@@ -73,13 +73,13 @@ class QXmppVersionManager;
/// QXmppVersionManager (software version information).
///
/// By default, the client will automatically try reconnecting to the server.
-/// You can change this a behaviour using
+/// You can change that behaviour using
/// QXmppConfiguration::setAutoReconnectionEnabled().
///
/// Not all the managers or extensions have been enabled by default. One can
/// enable/disable the managers using the functions \c addExtension() and
-/// \c removeExtension(). \c findExtension() can be used to find reference/
-/// pointer to particular instansiated and enabled manager.
+/// \c removeExtension(). \c findExtension() can be used to find a
+/// reference/pointer to a particular instantiated and enabled manager.
///
/// List of managers enabled by default:
/// - QXmppRosterManager
diff --git a/src/client/QXmppRosterManager.h b/src/client/QXmppRosterManager.h
index 90022edb..ec7e9f62 100644
--- a/src/client/QXmppRosterManager.h
+++ b/src/client/QXmppRosterManager.h
@@ -39,7 +39,7 @@ class QXmppRosterManagerPrivate;
/// \brief The QXmppRosterManager class provides access to a connected client's
/// roster.
///
-/// \note It's object should not be created using it's constructor. Instead
+/// \note Its object should not be created using its constructor. Instead
/// \c QXmppClient::findExtension<QXmppRosterManager>() should be used to get
/// the instantiated object of this class.
///
diff --git a/src/client/QXmppVCardManager.h b/src/client/QXmppVCardManager.h
index 2a5a1dac..39d4d458 100644
--- a/src/client/QXmppVCardManager.h
+++ b/src/client/QXmppVCardManager.h
@@ -33,7 +33,7 @@ class QXmppVCardManagerPrivate;
/// \brief The QXmppVCardManager class gets/sets XMPP vCards. It is an
/// implementation of \xep{0054}: vcard-temp.
///
-/// \note It's object should not be created using it's constructor. Instead
+/// \note Its object should not be created using its constructor. Instead
/// \c QXmppClient::findExtension<QXmppVCardManager>() should be used to get
/// the instantiated object of this class.
///
diff --git a/src/client/QXmppVersionManager.h b/src/client/QXmppVersionManager.h
index c336f8d2..7291c826 100644
--- a/src/client/QXmppVersionManager.h
+++ b/src/client/QXmppVersionManager.h
@@ -33,7 +33,7 @@ class QXmppVersionManagerPrivate;
/// \brief The QXmppVersionManager class makes it possible to request for
/// the software version of an entity as defined by \xep{0092}: Software Version.
///
-/// \note It's object should not be created using it's constructor. Instead
+/// \note Its object should not be created using its constructor. Instead
/// \c QXmppClient::findExtension<QXmppVersionManager>() should be used to get
/// the instantiated object of this class.
///