Remove a few overlooked literals

This commit is contained in:
Matthias Clasen 2014-02-06 16:59:49 -05:00
parent df990914cf
commit 63777d0c63
2 changed files with 14 additions and 15 deletions

View File

@ -794,20 +794,19 @@ g_dbus_proxy_get_cached_property (GDBusProxy *proxy,
* 42)); * 42));
* ]| * ]|
* *
* Normally you will not need to use this method since @proxy is * Normally you will not need to use this method since @proxy
* tracking changes using the * is tracking changes using the
* <literal>org.freedesktop.DBus.Properties.PropertiesChanged</literal> * `org.freedesktop.DBus.Properties.PropertiesChanged`
* D-Bus signal. However, for performance reasons an object may decide * D-Bus signal. However, for performance reasons an object may
* to not use this signal for some properties and instead use a * decide to not use this signal for some properties and instead
* proprietary out-of-band mechanism to transmit changes. * use a proprietary out-of-band mechanism to transmit changes.
* *
* As a concrete example, consider an object with a property * As a concrete example, consider an object with a property
* <literal>ChatroomParticipants</literal> which is an array of * `ChatroomParticipants` which is an array of strings. Instead of
* strings. Instead of transmitting the same (long) array every time * transmitting the same (long) array every time the property changes,
* the property changes, it is more efficient to only transmit the * it is more efficient to only transmit the delta using e.g. signals
* delta using e.g. signals <literal>ChatroomParticipantJoined(String * `ChatroomParticipantJoined(String name)` and
* name)</literal> and <literal>ChatroomParticipantParted(String * `ChatroomParticipantParted(String name)`.
* name)</literal>.
* *
* Since: 2.26 * Since: 2.26
*/ */

View File

@ -285,7 +285,7 @@ g_inet_socket_address_class_init (GInetSocketAddressClass *klass)
/** /**
* GInetSocketAddress:scope_id: * GInetSocketAddress:scope_id:
* *
* The <literal>sin6_scope_id</literal> field, for IPv6 addresses. * The `sin6_scope_id` field, for IPv6 addresses.
* *
* Since: 2.32 * Since: 2.32
*/ */
@ -370,7 +370,7 @@ g_inet_socket_address_get_port (GInetSocketAddress *address)
* g_inet_socket_address_get_flowinfo: * g_inet_socket_address_get_flowinfo:
* @address: a %G_SOCKET_FAMILY_IPV6 #GInetSocketAddress * @address: a %G_SOCKET_FAMILY_IPV6 #GInetSocketAddress
* *
* Gets the <literal>sin6_flowinfo</literal> field from @address, * Gets the `sin6_flowinfo` field from @address,
* which must be an IPv6 address. * which must be an IPv6 address.
* *
* Return value: the flowinfo field * Return value: the flowinfo field
@ -390,7 +390,7 @@ g_inet_socket_address_get_flowinfo (GInetSocketAddress *address)
* g_inet_socket_address_get_scope_id: * g_inet_socket_address_get_scope_id:
* @address: a %G_SOCKET_FAMILY_IPV6 #GInetAddress * @address: a %G_SOCKET_FAMILY_IPV6 #GInetAddress
* *
* Gets the <literal>sin6_scope_id</literal> field from @address, * Gets the `sin6_scope_id` field from @address,
* which must be an IPv6 address. * which must be an IPv6 address.
* *
* Return value: the scope id field * Return value: the scope id field