summaryrefslogtreecommitdiff
path: root/include/git2/config.h
diff options
context:
space:
mode:
authorBen Chatelain <benchatelain@gmail.com>2015-02-10 12:44:05 -0700
committerBen Chatelain <benchatelain@gmail.com>2015-02-10 12:44:05 -0700
commitc03e8c224cf18104bc97a68aed85317820d062ae (patch)
treef9cb73ec06a6114ba24611a5c90cebe8ced40bbb /include/git2/config.h
parentec7e1c93ce1c177026073abd16d6a8d2b548d3bd (diff)
downloadlibgit2-c03e8c224cf18104bc97a68aed85317820d062ae.tar.gz
Use correct Doxygen trailing comment syntax
Diffstat (limited to 'include/git2/config.h')
-rw-r--r--include/git2/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/config.h b/include/git2/config.h
index 46b285cbc..70c8beade 100644
--- a/include/git2/config.h
+++ b/include/git2/config.h
@@ -59,9 +59,9 @@ typedef enum {
* An entry in a configuration file
*/
typedef struct {
- const char *name; /* Name of the entry (normalised) */
- const char *value; /* String value of the entry */
- git_config_level_t level; /* Which config file this was found in */
+ const char *name; /**< Name of the entry (normalised) */
+ const char *value; /**< String value of the entry */
+ git_config_level_t level; /**< Which config file this was found in */
} git_config_entry;
typedef int (*git_config_foreach_cb)(const git_config_entry *, void *);