Skip to content

Commit 3fcff04

Browse files
committed
doc: Fix doxygen group closings
To close a group, the @} string must appear in a comment that is parsed by Doxygen, i.e. inside a comment that starts with a "/**". Signed-off-by: Petr Tesarik <[email protected]>
1 parent 23bac29 commit 3fcff04

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

include/libkdumpfile/addrxlat.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ typedef uint_fast64_t addrxlat_pte_t;
134134
#define ADDRXLAT_PRIuPTE PRIuFAST64 /**< Decimal PTE */
135135
#define ADDRXLAT_PRIxPTE PRIxFAST64 /**< Lowercase hex PTE */
136136
#define ADDRXLAT_PRIXPTE PRIXFAST64 /**< Uppercase hex PTE */
137-
/* @} */
137+
/** @} */
138138

139139
/** Address spaces
140140
*

include/libkdumpfile/kdumpfile.h.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ typedef uint_fast64_t kdump_num_t;
8080
#define KDUMP_PRIuNUM PRIuFAST64 /**< Decimal @c kdump_num_t */
8181
#define KDUMP_PRIxNUM PRIxFAST64 /**< Lowercase hex @c kdump_num_t */
8282
#define KDUMP_PRIXNUM PRIXFAST64 /**< Uppercase hex @c kdump_num_t */
83-
/* @} */
83+
/** @} */
8484

8585
/** Type of a physical or virtual address.
8686
*
@@ -118,7 +118,7 @@ typedef kdump_addr_t kdump_vaddr_t;
118118
#define KDUMP_PRIuADDR ADDRXLAT_PRIuADDR /**< Decimal address */
119119
#define KDUMP_PRIxADDR ADDRXLAT_PRIxADDR /**< Lowercase hex address */
120120
#define KDUMP_PRIXADDR ADDRXLAT_PRIXADDR /**< Uppercase hex address */
121-
/* @} */
121+
/** @} */
122122

123123
/** Representation of a dump file.
124124
*
@@ -217,7 +217,7 @@ enum kdump_clone_bits {
217217
*/
218218
/** Do not share address translation. */
219219
#define KDUMP_CLONE_XLAT (1UL << KDUMP_CLONE_BIT_XLAT)
220-
/* @} */
220+
/** @} */
221221

222222
/** Clone a dump file object.
223223
* @param orig Original dump file object.
@@ -1034,7 +1034,7 @@ void kdump_attr_iter_end(kdump_ctx_t *ctx, kdump_attr_iter_t *iter);
10341034
#define KDUMP_ARCH_S390 "s390" /**< IBM z/Architecture, 31-bit */
10351035
#define KDUMP_ARCH_S390X "s390x" /**< IBM z/Architecture, 64-bit */
10361036
#define KDUMP_ARCH_X86_64 "x86_64" /**< AMD64, Intel 64 */
1037-
/* @} */
1037+
/** @} */
10381038

10391039
/** Byte order attribute.
10401040
* @sa kdump_byte_order_t

0 commit comments

Comments
 (0)