From d6faa002a5d434f76a1bcf9e483e8935eff21d0a Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Tue, 2 May 2023 13:12:48 +0700 Subject: [PATCH] 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 --- glib/gtestutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,