summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Rebillout <arnaudr@kali.org>2023-05-02 13:12:48 +0700
committerArnaud Rebillout <arnaudr@kali.org>2023-05-02 13:21:17 +0700
commitd6faa002a5d434f76a1bcf9e483e8935eff21d0a (patch)
treed4220005fe6af5121e17c764eec632a5d22607b6
parent8a67f0c5c22225b70d0859585b7285e79c4107ca (diff)
downloadglib-d6faa002a5d434f76a1bcf9e483e8935eff21d0a.tar.gz
gtestutils: Fix section marker in documentation
Apparently 3 hashes is too many, and as a result this line is not displayed properly in the HTML documentation. 2 hashes seems to be just right, as can be seen with: $ git grep '^ \* ##' | wc -l 65 $ git grep '^ \* ###' | wc -l 1
-rw-r--r--glib/gtestutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gtestutils.c b/glib/gtestutils.c
index e98294ed3..d5cf23683 100644
--- a/glib/gtestutils.c
+++ b/glib/gtestutils.c
@@ -174,7 +174,7 @@
* }
* ]|
*
- * ### Integrating GTest in your project
+ * ## Integrating GTest in your project
*
* If you are using the [Meson](http://mesonbuild.com) build system, you will
* typically use the provided `test()` primitive to call the test binaries,