diff options
author | Ben Chatelain <benchatelain@gmail.com> | 2015-02-10 12:44:05 -0700 |
---|---|---|
committer | Ben Chatelain <benchatelain@gmail.com> | 2015-02-10 12:44:05 -0700 |
commit | c03e8c224cf18104bc97a68aed85317820d062ae (patch) | |
tree | f9cb73ec06a6114ba24611a5c90cebe8ced40bbb /include/git2/config.h | |
parent | ec7e1c93ce1c177026073abd16d6a8d2b548d3bd (diff) | |
download | libgit2-c03e8c224cf18104bc97a68aed85317820d062ae.tar.gz |
Use correct Doxygen trailing comment syntax
Diffstat (limited to 'include/git2/config.h')
-rw-r--r-- | include/git2/config.h | 6 |
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 *); |