diff options
Diffstat (limited to 'include/git2/config.h')
-rw-r--r-- | include/git2/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/git2/config.h b/include/git2/config.h index 1ed8d2441..46b285cbc 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 *); @@ -333,7 +333,7 @@ GIT_EXTERN(int) git_config_get_bool(int *out, const git_config *cfg, const char * @param out the buffer in which to store the result * @param cfg where to look for the variable * @param name the variable's name - * @param 0 or an error code + * @return 0 or an error code */ GIT_EXTERN(int) git_config_get_path(git_buf *out, const git_config *cfg, const char *name); |