From de632b4df816d94d36efad60dc8aaa711935a2e3 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Thu, 3 Nov 2022 10:25:37 +0100 Subject: [PATCH] core/lib/xfa: fix parameter documentation --- core/lib/include/xfa.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/lib/include/xfa.h b/core/lib/include/xfa.h index 2a72ff78fd..700e85a65e 100644 --- a/core/lib/include/xfa.h +++ b/core/lib/include/xfa.h @@ -64,7 +64,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"") * error: ISO C forbids empty initializer braces * error: ISO C forbids zero-size array ‘xfatest_const_end’ * - * @param[in] type name of the cross-file array + * @param[in] type type of the cross-file array * @param[in] name name of the cross-file array */ #define XFA_INIT_CONST(type, name) \ @@ -86,7 +86,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"") * error: ISO C forbids empty initializer braces * error: ISO C forbids zero-size array ‘xfatest_end’ * - * @param[in] type name of the cross-file array + * @param[in] type type of the cross-file array * @param[in] name name of the cross-file array */ #define XFA_INIT(type, name) \ @@ -105,7 +105,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"") * It is supposed to be used in compilation units where the cross file array is * being accessed, but not defined using XFA_INIT. * - * @param[in] type name of the cross-file array + * @param[in] type type of the cross-file array * @param[in] name name of the cross-file array */ #define XFA_USE_CONST(type, name) \ @@ -120,7 +120,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"") * It is supposed to be used in compilation units where the cross file array is * being accessed, but not defined using XFA_INIT. * - * @param[in] type name of the cross-file array + * @param[in] type type of the cross-file array * @param[in] name name of the cross-file array */ #define XFA_USE(type, name) \