gdbusconnection: Improve documentation formatting slightly

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall 2020-12-15 09:14:20 +00:00
parent 06b5e3e54c
commit eb8d1c4826
2 changed files with 5 additions and 5 deletions

View File

@ -885,7 +885,7 @@ g_dbus_connection_class_init (GDBusConnectionClass *klass)
* *
* If you are constructing a #GDBusConnection and pass * If you are constructing a #GDBusConnection and pass
* %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER in the * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER in the
* #GDBusConnection:flags property then you MUST also set this * #GDBusConnection:flags property then you **must** also set this
* property to a valid guid. * property to a valid guid.
* *
* If you are constructing a #GDBusConnection and pass * If you are constructing a #GDBusConnection and pass
@ -5511,7 +5511,7 @@ register_with_closures_on_set_property (GDBusConnection *connection,
* Version of g_dbus_connection_register_object() using closures instead of a * Version of g_dbus_connection_register_object() using closures instead of a
* #GDBusInterfaceVTable for easier binding in other languages. * #GDBusInterfaceVTable for easier binding in other languages.
* *
* Returns: 0 if @error is set, otherwise a registration id (never 0) * Returns: 0 if @error is set, otherwise a registration ID (never 0)
* that can be used with g_dbus_connection_unregister_object() . * that can be used with g_dbus_connection_unregister_object() .
* *
* Since: 2.46 * Since: 2.46
@ -6860,8 +6860,8 @@ subtree_message_func (GDBusConnection *connection,
* See this [server][gdbus-subtree-server] for an example of how to use * See this [server][gdbus-subtree-server] for an example of how to use
* this method. * this method.
* *
* Returns: 0 if @error is set, otherwise a subtree registration id (never 0) * Returns: 0 if @error is set, otherwise a subtree registration ID (never 0)
* that can be used with g_dbus_connection_unregister_subtree() . * that can be used with g_dbus_connection_unregister_subtree()
* *
* Since: 2.26 * Since: 2.26
*/ */

View File

@ -432,7 +432,7 @@ gboolean g_dbus_connection_unregister_object (GDBusConnection
* specified (ie: to verify that the object path is valid). * specified (ie: to verify that the object path is valid).
* *
* Hierarchies are not supported; the items that you return should not * Hierarchies are not supported; the items that you return should not
* contain the '/' character. * contain the `/` character.
* *
* The return value will be freed with g_strfreev(). * The return value will be freed with g_strfreev().
* *