diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-05-19 09:18:39 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-05-19 09:18:39 -0400 |
commit | 68fe8826ddec2eefa103e4772bce35f7d1666ac3 (patch) | |
tree | fbf4678dc7904b720fa7c17535d229a08f1247d5 /src/lib/conf | |
parent | 6f2b6ede1b6b70301cfd033060f999d561f57364 (diff) | |
download | tor-68fe8826ddec2eefa103e4772bce35f7d1666ac3.tar.gz tor-68fe8826ddec2eefa103e4772bce35f7d1666ac3.zip |
Doxygen: fix unbalanced groups.
Closes ticket 34255.
Diffstat (limited to 'src/lib/conf')
-rw-r--r-- | src/lib/conf/confdecl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/conf/confdecl.h b/src/lib/conf/confdecl.h index f7e79bb2b1..c2d3fb335d 100644 --- a/src/lib/conf/confdecl.h +++ b/src/lib/conf/confdecl.h @@ -136,11 +136,11 @@ }, /**@}*/ -/* @defgroup STUB_TABLE_MACROS Internal macros: stub table declarations, +/** @defgroup STUB_TABLE_MACROS Internal macros: stub table declarations, * for use when a module is disabled. * Implementation helpers: the regular confdecl macros expand to these * when CONF_CONTEXT is defined to LL_TABLE. Don't use them directly. - * @{*/ + * @{ */ #define BEGIN_CONF_STRUCT__STUB_TABLE(structname) \ static const config_var_t structname##_vars[] = { #define END_CONF_STRUCT__STUB_TABLE(structname) \ @@ -166,7 +166,7 @@ * when the macro sees us declare a configuration option "foo" of type STRING, * it can emit `config_decl_STRING foo;`, which is an alias for `char *foo`. */ -/**{*/ +/**@{*/ typedef char *config_decl_STRING; typedef char *config_decl_FILENAME; /* Yes, "POSINT" is really an int, and not an unsigned int. For |