From bd3abd0bde82b5f7b908282ab04722c9122acc68 Mon Sep 17 00:00:00 2001 From: Tom Levy Date: Sun, 18 Sep 2022 13:09:09 +0000 Subject: [PATCH] docs: Fix markup error in code blocks for "DEPRECATED" macros --- glib/docs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glib/docs.c b/glib/docs.c index e1c621244..a8e31fb87 100644 --- a/glib/docs.c +++ b/glib/docs.c @@ -2049,7 +2049,7 @@ * G_GNUC_END_IGNORE_DEPRECATIONS * ]| * - * |[ * static void * test_deprecated_function (void) * { @@ -2083,7 +2083,7 @@ * meant to be portable across different compilers and must be placed * before the function declaration. * - * |[ * G_DEPRECATED * int my_mistake (void); * ]| @@ -2100,7 +2100,7 @@ * is meant to be portable across different compilers and must be placed * before the function declaration. * - * |[ * G_DEPRECATED_FOR(my_replacement) * int my_mistake (void); * ]|