diff options
author | Michael Anderson <drmikeando@gmail.com> | 2014-05-22 17:16:21 +0800 |
---|---|---|
committer | Michael Anderson <drmikeando@gmail.com> | 2014-05-23 15:57:20 +0800 |
commit | 31b0cb518f11d4ec8a95df54d077d51b05fa899c (patch) | |
tree | fa0ddcdaf97f7ee5c6a3c4edb8aa85a4d8549b7a /include/git2/refs.h | |
parent | 530594c0aa04df31e3cef331f6dad8083f66f15d (diff) | |
download | libgit2-31b0cb518f11d4ec8a95df54d077d51b05fa899c.tar.gz |
Fixed miscellaneous documentation errors.
Diffstat (limited to 'include/git2/refs.h')
-rw-r--r-- | include/git2/refs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/git2/refs.h b/include/git2/refs.h index ae2d379d9..e5bb15c7c 100644 --- a/include/git2/refs.h +++ b/include/git2/refs.h @@ -178,7 +178,6 @@ GIT_EXTERN(int) git_reference_symbolic_create(git_reference **out, git_repositor * @param name The name of the reference * @param id The object id pointed to by the reference. * @param force Overwrite existing references - * @param force Overwrite existing references * @param signature The identity that will used to populate the reflog entry * @param log_message The one line long message to be appended to the reflog * @return 0 on success, GIT_EEXISTS, GIT_EINVALIDSPEC or an error code @@ -221,7 +220,6 @@ GIT_EXTERN(int) git_reference_create(git_reference **out, git_repository *repo, * @param name The name of the reference * @param id The object id pointed to by the reference. * @param force Overwrite existing references - * @param force Overwrite existing references * @param current_id The expected value of the reference at the time of update * @param signature The identity that will used to populate the reflog entry * @param log_message The one line long message to be appended to the reflog @@ -415,7 +413,7 @@ GIT_EXTERN(int) git_reference_delete(git_reference *ref); * This method removes the named reference from the repository without * looking at its old value. * - * @param ref The reference to remove + * @param name The reference to remove * @return 0 or an error code */ GIT_EXTERN(int) git_reference_remove(git_repository *repo, const char *name); |