diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-06-16 03:02:46 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-06-16 03:06:22 +0200 |
commit | d144c569f372aace4b71e595cb541111730edce4 (patch) | |
tree | be63023d8be74794fbe4e12214116914a1dad92b /include/git2/config.h | |
parent | f1d018513aced2fb4e6c87f2d417b6f826dbe998 (diff) | |
download | libgit2-d144c569f372aace4b71e595cb541111730edce4.tar.gz |
Update documentation
Fix all the missmatched arguments in the docs
Diffstat (limited to 'include/git2/config.h')
-rw-r--r-- | include/git2/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/config.h b/include/git2/config.h index 4167bf8e5..502b0ae33 100644 --- a/include/git2/config.h +++ b/include/git2/config.h @@ -163,7 +163,7 @@ GIT_EXTERN(int) git_config_get_string(git_config *cfg, const char *name, const c * * @param cfg where to look for the variable * @param name the variable's name - * @param out pointer to the variable where the value should be stored + * @param value Integer value for the variable * @return GIT_SUCCESS on success; error code otherwise */ GIT_EXTERN(int) git_config_set_int(git_config *cfg, const char *name, int value); @@ -173,7 +173,7 @@ GIT_EXTERN(int) git_config_set_int(git_config *cfg, const char *name, int value) * * @param cfg where to look for the variable * @param name the variable's name - * @param out pointer to the variable where the value should be stored + * @param value Long integer value for the variable * @return GIT_SUCCESS on success; error code otherwise */ GIT_EXTERN(int) git_config_set_long(git_config *cfg, const char *name, long int value); |