From 373bf178b67e7f40e9f2604e9e17165e068d4f90 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 11 Jan 2018 16:03:05 +0000 Subject: [PATCH] docs: Fix syntax in GDBusInterfaceSkeleton documentation gtk-doc was mis-parsing the combination of ` and :: and truncating some of the documentation. Avoid that by using the D-Bus style of separating interface and signal names using a dot. Signed-off-by: Philip Withnall Reviewed-by: nobody --- gio/gdbusinterfaceskeleton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbusinterfaceskeleton.c b/gio/gdbusinterfaceskeleton.c index 4c82bd0a4..96bd520aa 100644 --- a/gio/gdbusinterfaceskeleton.c +++ b/gio/gdbusinterfaceskeleton.c @@ -381,7 +381,7 @@ g_dbus_interface_skeleton_get_properties (GDBusInterfaceSkeleton *interface_) * * For example, an exported D-Bus interface may queue up property * changes and emit the - * `org.freedesktop.DBus.Properties::PropertiesChanged` + * `org.freedesktop.DBus.Properties.PropertiesChanged` * signal later (e.g. in an idle handler). This technique is useful * for collapsing multiple property changes into one. *