summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@gnome.org>2024-03-06 13:23:48 +0000
committerPhilip Withnall <pwithnall@gnome.org>2024-03-07 13:12:07 +0000
commitfafe1a14a88044eb87190640f66963796bc0d9f1 (patch)
tree5af13fa90b894473c0143bb8452e29105f1fc389 /docs
parent8a640f50cad10cd3c3d87b9b8c90835cd42255fc (diff)
docs: Minor reformatting / gi-docgenification of signals docs
This is nowhere near a complete check-through and gi-docgenification of the signals docs, just a few bits I was looking at anyway. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3250
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/gobject/signals.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/reference/gobject/signals.md b/docs/reference/gobject/signals.md
index 6b17ee54c..ab7444bfd 100644
--- a/docs/reference/gobject/signals.md
+++ b/docs/reference/gobject/signals.md
@@ -52,12 +52,12 @@ A signal emission consists of five stages, unless prematurely stopped:
1. Invocation of the object method handler for `G_SIGNAL_RUN_FIRST` signals
-2. Invocation of normal user-provided signal handlers (where the @after
+2. Invocation of normal user-provided signal handlers (where the `after`
flag is not set)
3. Invocation of the object method handler for `G_SIGNAL_RUN_LAST` signals
-4. Invocation of user provided signal handlers (where the @after flag is set)
+4. Invocation of user provided signal handlers (where the `after` flag is set)
5. Invocation of the object method handler for `G_SIGNAL_RUN_CLEANUP` signals
@@ -83,7 +83,7 @@ detail part of the signal specification upon connection) serves as a
wildcard and matches any detail argument passed in to emission.
While the `detail` argument is typically used to pass an object property name
-(as with `GObject::notify`), no specific format is mandated for the detail
+(as with [signal@GObject.Object::notify]), no specific format is mandated for the detail
string, other than that it must be non-empty.
## Memory management of signal handlers