diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-17 14:13:43 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-17 14:22:31 +0100 |
commit | 5c03d17cc449966dc1a42e1d8bf19ceca11ce510 (patch) | |
tree | 67d4fe277d4abcb16fd76ddf2a6a30ce2d924b1f | |
parent | feb9b9cebbbcc63e04fc19b06ed41a7cb4f232be (diff) |
fix some more comments
-rw-r--r-- | telepathy-glib/base-channel.c | 2 | ||||
-rw-r--r-- | telepathy-glib/base-connection.c | 2 | ||||
-rw-r--r-- | telepathy-glib/presence-mixin.c | 12 |
3 files changed, 8 insertions, 8 deletions
diff --git a/telepathy-glib/base-channel.c b/telepathy-glib/base-channel.c index c55f7188b..42f2f0a9a 100644 --- a/telepathy-glib/base-channel.c +++ b/telepathy-glib/base-channel.c @@ -25,7 +25,7 @@ * @short_description: base class for all channel implementations * @see_also: #TpSvcChannel * - * This base class makes it easier to write channels + * This base class makes it easier to write channel * implementations by implementing some of its properties, and defining other * relevant properties. * diff --git a/telepathy-glib/base-connection.c b/telepathy-glib/base-connection.c index 4e8913110..935cef794 100644 --- a/telepathy-glib/base-connection.c +++ b/telepathy-glib/base-connection.c @@ -1013,7 +1013,7 @@ tp_base_connection_class_init (TpBaseConnectionClass *klass) * * If this property is %NULL or omitted during construction, the object will * automatically attempt to connect to the session bus with - * g_bus_get_sync() just after it is ; if this fails, this + * g_bus_get_sync() just after it is constructed; if this fails, this * property will remain %NULL, and tp_base_connection_register() will fail. * * Since: 0.99.10 diff --git a/telepathy-glib/presence-mixin.c b/telepathy-glib/presence-mixin.c index 8cfc6bb3b..f16c91bef 100644 --- a/telepathy-glib/presence-mixin.c +++ b/telepathy-glib/presence-mixin.c @@ -59,7 +59,7 @@ /** * TpPresenceMixinStatusAvailableFunc: - * @self: A #TpBaseConnection implemeting #TpPresenceMixinInterface + * @self: A #TpBaseConnection implementing #TpPresenceMixinInterface * @which: An index into the array of #TpPresenceStatusSpec provided to * tp_presence_mixin_class_init() * @@ -82,7 +82,7 @@ /** * TpPresenceMixinGetContactStatusFunc: - * @self: A #TpBaseConnection implemeting #TpPresenceMixinInterface + * @self: A #TpBaseConnection implementing #TpPresenceMixinInterface * @contact: A #TpHandle of type %TP_ENTITY_TYPE_CONTACT * * Return the contact's status @@ -92,7 +92,7 @@ /** * TpPresenceMixinSetOwnStatusFunc: - * @self: A #TpBaseConnection implemeting #TpPresenceMixinInterface + * @self: A #TpBaseConnection implementing #TpPresenceMixinInterface * @status: The status to set, or NULL for whatever the protocol defines as a * "default" status * @error: Used to return a Telepathy D-Bus error if %FALSE is returned @@ -110,7 +110,7 @@ /** * TpPresenceMixinGetMaximumStatusMessageLengthFunc: - * @self: A #TpBaseConnection implemeting #TpPresenceMixinInterface + * @self: A #TpBaseConnection implementing #TpPresenceMixinInterface * * Signature of a callback used to determine the maximum length of status * messages. If this callback is provided and returns non-zero, the @@ -315,7 +315,7 @@ tp_presence_mixin_init (TpPresenceMixin *self) /** * tp_presence_mixin_emit_presence_update: (skip) - * @self: A #TpBaseConnection implemeting #TpPresenceMixinInterface + * @self: A #TpBaseConnection implementing #TpPresenceMixinInterface * @contact_presences: A mapping of contact handles to #TpPresenceStatus * structures with the presence data to emit * @@ -342,7 +342,7 @@ tp_presence_mixin_emit_presence_update (TpPresenceMixin *self, /** * tp_presence_mixin_emit_one_presence_update: - * @self: A #TpBaseConnection implemeting #TpPresenceMixinInterface + * @self: A #TpBaseConnection implementing #TpPresenceMixinInterface * @handle: The handle of the contact to emit the signal for * @status: The new status to emit * |