From 2bc38e103d18c383a17cd796c08193792f346335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 20 Jan 2024 09:36:28 +0100 Subject: [PATCH] droptarget: Fix GType in doc strings While we have several `GType`s the actual type name is still singular. --- gtk/gtkdroptarget.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkdroptarget.c b/gtk/gtkdroptarget.c index c4871f106e..1446b43b93 100644 --- a/gtk/gtkdroptarget.c +++ b/gtk/gtkdroptarget.c @@ -75,7 +75,7 @@ * * // This widget accepts two types of drop types: GFile objects * // and GdkPixbuf objects - * gtk_drop_target_set_gtypes (target, (GTypes [2]) { + * gtk_drop_target_set_gtypes (target, (GType [2]) { * G_TYPE_FILE, * GDK_TYPE_PIXBUF, * }, 2); @@ -935,7 +935,7 @@ gtk_drop_target_get_formats (GtkDropTarget *self) * that can be dropped on the target * @n_types: number of @types * - * Sets the supported `GTypes` for this drop target. + * Sets the supported `GType`s for this drop target. */ void gtk_drop_target_set_gtypes (GtkDropTarget *self,