From kde-commits Tue Sep 30 22:25:41 2014 From: =?utf-8?q?Sebastian_K=C3=BCgler?= Date: Tue, 30 Sep 2014 22:25:41 +0000 To: kde-commits Subject: [kwayland] src/client: Improve grammar in api docs Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=141211594913108 Git commit 3a27ae0008c69d1961e6b907d4f5130ca0c2089d by Sebastian K=C3=BCgle= r. Committed on 30/09/2014 at 22:25. Pushed by sebas into branch 'master'. Improve grammar in api docs M +1 -1 src/client/output.h M +5 -5 src/client/shell.h http://commits.kde.org/kwayland/3a27ae0008c69d1961e6b907d4f5130ca0c2089d diff --git a/src/client/output.h b/src/client/output.h index e8ebbda..fc2764b 100644 --- a/src/client/output.h +++ b/src/client/output.h @@ -39,7 +39,7 @@ namespace Client * @short Wrapper for the wl_output interface. * * This class provides a convenient wrapper for the wl_output interface. - * It's main purpose is to hold the information about one Output. + * Its main purpose is to hold the information about one Output. * * To use this class one needs to interact with the Registry. There are two * possible ways to create an Output interface: diff --git a/src/client/shell.h b/src/client/shell.h index e865a49..2b6447d 100644 --- a/src/client/shell.h +++ b/src/client/shell.h @@ -84,9 +84,9 @@ public: **/ void release(); /** - * Destroys the data hold by this Shell. + * Destroys the data held by this Shell. * This method is supposed to be used when the connection to the Wayla= nd - * server goes away. If the connection is not valid any more, it's not + * server goes away. Once the connection becomes invalid, it's not * possible to call release any more as that calls into the Wayland * connection and the call would fail. This method cleans up the data,= so * that the instance can be deleted or setup to a new wl_shell interfa= ce @@ -97,7 +97,7 @@ public: * connect(connection, &ConnectionThread::connectionDied, shell, &Shel= l::destroyed); * @endcode * - * Right before the data is destroyed the signal interfaceAboutToBeDes= troyed is emitted. + * Right before the data is destroyed, the signal interfaceAboutToBeDe= stroyed is emitted. * * @see release * @see interfaceAboutToBeDestroyed @@ -141,11 +141,11 @@ public: = Q_SIGNALS: /** - * This signal is emitted right before the interface is going to be re= leased. + * This signal is emitted right before the interface is released. **/ void interfaceAboutToBeReleased(); /** - * This signal is emitted right before the data is going to be destroy= ed. + * This signal is emitted right before the data is destroyed. **/ void interfaceAboutToBeDestroyed(); =20