From c0c809aaa1f050223e5cce71f7c577e17aab64b3 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 12 Dec 2025 12:43:06 +1000 Subject: [PATCH] util: fix documentation issues for newtypes Part-of: --- src/util-newtype.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util-newtype.h b/src/util-newtype.h index 841b3cc4..43d060f4 100644 --- a/src/util-newtype.h +++ b/src/util-newtype.h @@ -42,9 +42,9 @@ * - int foo(foo f); * - foo_t foo_from_int(int); * - foo_t foo_copy(foo_t f); - * - foo_t foo_min(foo_t a, foo b); - * - foo_t foo_max(foo_t a, foo b); - * - foo_t foo_cmp(foo_t a, foo b); + * - foo_t foo_min(foo_t a, foo_t b); + * - foo_t foo_max(foo_t a, foo_t b); + * - int foo_cmp(foo_t a, foo_t b); * - bool foo_eq(foo_t a, int b); * - bool foo_ne(foo_t a, int b); * - bool foo_le(foo_t a, int b);