[docs] Use %true and %false consistently
diff --git a/src/hb-unicode.h b/src/hb-unicode.h index 7ea0848..3cfeab1 100644 --- a/src/hb-unicode.h +++ b/src/hb-unicode.h
@@ -427,7 +427,7 @@ * The method must return an #hb_bool_t indicating the success * of the composition. * - * Return value: True is @a,@b composed, false otherwise + * Return value: %true is @a,@b composed, %false otherwise * **/ typedef hb_bool_t (*hb_unicode_compose_func_t) (hb_unicode_funcs_t *ufuncs, @@ -451,7 +451,7 @@ * output parameters (if successful). The method must return an * #hb_bool_t indicating the success of the composition. * - * Return value: True if @ab decomposed, false otherwise + * Return value: %true if @ab decomposed, %false otherwise * **/ typedef hb_bool_t (*hb_unicode_decompose_func_t) (hb_unicode_funcs_t *ufuncs, @@ -634,7 +634,7 @@ * Composes the code point sequence @a,@b by canonical equivalence into * code point @ab. * - * Return value: True is @a,@b composed, false otherwise + * Return value: %true if @a,@b composed, %false otherwise * * Since: 0.9.2 **/ @@ -654,7 +654,7 @@ * Decomposes code point @ab by canonical equivalence, into code points * @a and @b. * - * Return value: True if @ab decomposed, false otherwise + * Return value: %true if @ab decomposed, %false otherwise * * Since: 0.9.2 **/