diff options
author | Vicent Martà <vicent@github.com> | 2013-06-24 11:21:54 -0700 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-06-24 11:21:54 -0700 |
commit | 353a90bedb6e679306f740fd0c1a08fc7934fbaa (patch) | |
tree | 47235e64e26e95f8d16b084c4d31f6a6b640d573 /include/git2/config.h | |
parent | 09ee60c6d40821caec44ab8a769bbae1108cf71a (diff) | |
parent | e1967164574816b8bf6740ea17d08eeb26c091d2 (diff) | |
download | libgit2-353a90bedb6e679306f740fd0c1a08fc7934fbaa.tar.gz |
Merge pull request #1672 from TheRealKerni/fix/header_docs
Fixed most documentation header bugs
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 59b4307be..827d43544 100644 --- a/include/git2/config.h +++ b/include/git2/config.h @@ -119,7 +119,7 @@ GIT_EXTERN(int) git_config_find_xdg(char *out, size_t length); * If /etc/gitconfig doesn't exist, it will look for * %PROGRAMFILES%\Git\etc\gitconfig. - * @param global_config_path Buffer to store the path in + * @param out Buffer to store the path in * @param length size of the buffer in bytes * @return 0 if a system configuration file has been * found. Its path will be stored in `buffer`. @@ -335,8 +335,8 @@ GIT_EXTERN(int) git_config_get_string(const char **out, const git_config *cfg, c * @param name the variable's name * @param regexp regular expression to filter which variables we're * interested in. Use NULL to indicate all - * @param fn the function to be called on each value of the variable - * @param data opaque pointer to pass to the callback + * @param callback the function to be called on each value of the variable + * @param payload opaque pointer to pass to the callback */ GIT_EXTERN(int) git_config_get_multivar(const git_config *cfg, const char *name, const char *regexp, git_config_foreach_cb callback, void *payload); |