diff options
author | Sander Temme <sctemme@apache.org> | 2007-07-04 01:02:32 +0200 |
---|---|---|
committer | Sander Temme <sctemme@apache.org> | 2007-07-04 01:02:32 +0200 |
commit | 10fd249eeac047725eaa9f9fdb4ea0df6dac9b01 (patch) | |
tree | eebf91dbc8650fb7c743572d77c604822890b5c7 /include/util_cfgtree.h | |
parent | Rename relatively useless struct element for something more (diff) | |
download | apache2-10fd249eeac047725eaa9f9fdb4ea0df6dac9b01.tar.xz apache2-10fd249eeac047725eaa9f9fdb4ea0df6dac9b01.zip |
Use correct Doxygen keywords for functions and variables. TODO: figure out whether those keywords are actually necessary. HTML-ify some documentation comments for benefit of Doxygen.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@553013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_cfgtree.h')
-rw-r--r-- | include/util_cfgtree.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/include/util_cfgtree.h b/include/util_cfgtree.h index 58673f6e01..911130b913 100644 --- a/include/util_cfgtree.h +++ b/include/util_cfgtree.h @@ -39,9 +39,9 @@ typedef struct ap_directive_t ap_directive_t; * * The config tree only stores * the directives that will be active in the running server. Directives - * that contain other directions, such as <Directory ...> cause a sub-level + * that contain other directions, such as <Directory ...> cause a sub-level * to be created, where the included directives are stored. The closing - * directive (</Directory>) is not stored in the tree. + * directive (</Directory>) is not stored in the tree. */ struct ap_directive_t { /** The current directive */ @@ -49,14 +49,11 @@ struct ap_directive_t { /** The arguments for the current directive, stored as a space * separated list */ const char *args; - /** The next directive node in the tree - * @defvar ap_directive_t *next */ + /** The next directive node in the tree */ struct ap_directive_t *next; - /** The first child node of this directive - * @defvar ap_directive_t *first_child */ + /** The first child node of this directive */ struct ap_directive_t *first_child; - /** The parent node of this directive - * @defvar ap_directive_t *parent */ + /** The parent node of this directive */ struct ap_directive_t *parent; /** directive's module can store add'l data here */ @@ -71,7 +68,7 @@ struct ap_directive_t { /** * The root of the configuration tree - * @defvar ap_directive_t *conftree + * @var ap_directive_t *conftree */ AP_DECLARE_DATA extern ap_directive_t *ap_conftree; |