summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gmail.com>2022-09-18 14:02:39 +0000
committerEmmanuele Bassi <ebassi@gmail.com>2022-09-18 14:02:39 +0000
commitb38d5a991f1d86f5c7d6b00d6f8aecf888b1420b (patch)
tree68b8979e792ab94718063bd4f50c4ed60491ec4b
parent74b9f4e3c0726acc9ce23fabf0801c96d7ade4c6 (diff)
parentbd3abd0bde82b5f7b908282ab04722c9122acc68 (diff)
downloadglib-b38d5a991f1d86f5c7d6b00d6f8aecf888b1420b.tar.gz
Merge branch 'pr-docs-fix-markup-code-blocks' into 'main'
docs: Fix markup error in code blocks for "DEPRECATED" macros See merge request GNOME/glib!2903
-rw-r--r--glib/docs.c6
1 files 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
* ]|
*
- * |[<!-- language="C" --
+ * |[<!-- language="C" -->
* 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.
*
- * |[<!-- language="C" --
+ * |[<!-- language="C" -->
* 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.
*
- * |[<!-- language="C" --
+ * |[<!-- language="C" -->
* G_DEPRECATED_FOR(my_replacement)
* int my_mistake (void);
* ]|