From 7adf720f08f63fcf3ae417801c90d41cecb7f408 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 17 Nov 2022 03:46:01 +0000 Subject: [PATCH] label: Fix markup doc example --- gtk/gtklabel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c index 5f8dd50d2d..8074cb4b1f 100644 --- a/gtk/gtklabel.c +++ b/gtk/gtklabel.c @@ -232,8 +232,8 @@ * * ```c * const char *text = - * "Go to the" - * "" + * "Go to the " + * "" * "GTK website for more..."; * GtkWidget *label = gtk_label_new (NULL); * gtk_label_set_markup (GTK_LABEL (label), text);