From ed16946685d9e4cb9a85270dd63054467869a5e6 Mon Sep 17 00:00:00 2001 From: Cam Cook Date: Sun, 6 Nov 2022 17:59:23 -0500 Subject: [PATCH] doc/comment fix: the ref to @self was misspelled as self@ for gtkaspectframe.h/gtk_aspect_frame_get_child Noticed this while reviewing the gi-docgen docs for GtkAspectFrame while developing some java bindings. It's my understanding that @self was intended; as it would cause gi-docgen to interpret it as a reference to the the GtkAspectFrame pointer named 'self'. --- gtk/gtkaspectframe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkaspectframe.c b/gtk/gtkaspectframe.c index 363dc5feb6..01bc82bcc2 100644 --- a/gtk/gtkaspectframe.c +++ b/gtk/gtkaspectframe.c @@ -662,7 +662,7 @@ gtk_aspect_frame_set_child (GtkAspectFrame *self, * * Gets the child widget of @self. * - * Returns: (nullable) (transfer none): the child widget of self@ + * Returns: (nullable) (transfer none): the child widget of @self */ GtkWidget * gtk_aspect_frame_get_child (GtkAspectFrame *self) -- 2.30.2