From 55184ba8326136ea487e00cda090807598d672f8 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 29 Apr 2020 17:32:41 +0200 Subject: [PATCH] doxygen docs: Add missing group braces Without them, these Evil docs had no group and therefore didn't appear anywhere. --- src/lib/evil/evil_stdio.h | 5 ++++- src/lib/evil/evil_string.h | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/lib/evil/evil_stdio.h b/src/lib/evil/evil_stdio.h index 7b61a33b57..64b09af9bc 100644 --- a/src/lib/evil/evil_stdio.h +++ b/src/lib/evil/evil_stdio.h @@ -9,7 +9,7 @@ * @ingroup Evil * * This header provides functions ported from Unix in stdio.h. - * + * @{ */ #define EVIL_PATH_SEP_SWAP(p, s1, s2) \ @@ -56,5 +56,8 @@ EAPI int evil_rename(const char *src, const char *dst); */ EAPI int evil_mkdir(const char *dirname, mode_t mode); +/** + * @} + */ #endif /* __EVIL_STDIO_H__ */ diff --git a/src/lib/evil/evil_string.h b/src/lib/evil/evil_string.h index 872834f238..a6ff858eed 100644 --- a/src/lib/evil/evil_string.h +++ b/src/lib/evil/evil_string.h @@ -10,7 +10,7 @@ * * This header provides functions ported from Unix in string.h. * - * + * @{ */ @@ -63,4 +63,8 @@ EAPI char *strcasestr(const char *haystack, const char *needle); */ EAPI char *strsep(char **stringp, const char *delim); +/** + * @} + */ + #endif /* __EVIL_STRING_H__ */