diff options
| author | Russell Belfer <rb@github.com> | 2013-07-23 09:43:07 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2013-07-23 09:43:07 -0700 |
| commit | cdbcb8dd80ccae119ab56daa6da51990667e653c (patch) | |
| tree | cfe3f13a012130686ae07e446eaa2ad2e6074226 /include/git2/sys | |
| parent | e5bdf82976c631a5b4cc36d8bfad61de609d7802 (diff) | |
| parent | 64061d4a14f77fdcf6ecc038ea6e9b02f14e03a8 (diff) | |
| download | libgit2-cdbcb8dd80ccae119ab56daa6da51990667e653c.tar.gz | |
Merge pull request #1745 from libgit2/doc-fixes
Doc fixes
Diffstat (limited to 'include/git2/sys')
| -rw-r--r-- | include/git2/sys/index.h | 2 | ||||
| -rw-r--r-- | include/git2/sys/refs.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/git2/sys/index.h b/include/git2/sys/index.h index a32e07036..1a06a4df1 100644 --- a/include/git2/sys/index.h +++ b/include/git2/sys/index.h @@ -72,7 +72,6 @@ GIT_EXTERN(int) git_index_name_add(git_index *index, * Remove all filename conflict entries. * * @param index an existing index object - * @return 0 or an error code */ GIT_EXTERN(void) git_index_name_clear(git_index *index); @@ -168,7 +167,6 @@ GIT_EXTERN(int) git_index_reuc_remove(git_index *index, size_t n); * Remove all resolve undo entries from the index * * @param index an existing index object - * @return 0 or an error code */ GIT_EXTERN(void) git_index_reuc_clear(git_index *index); diff --git a/include/git2/sys/refs.h b/include/git2/sys/refs.h index 85963258c..dd95ca12c 100644 --- a/include/git2/sys/refs.h +++ b/include/git2/sys/refs.h @@ -16,7 +16,7 @@ * * @param name the reference name * @param oid the object id for a direct reference - * @param symbolic the target for a symbolic reference + * @param peel the first non-tag object's OID, or NULL * @return the created git_reference or NULL on error */ GIT_EXTERN(git_reference *) git_reference__alloc( @@ -28,7 +28,7 @@ GIT_EXTERN(git_reference *) git_reference__alloc( * Create a new symbolic reference. * * @param name the reference name - * @param symbolic the target for a symbolic reference + * @param target the target for a symbolic reference * @return the created git_reference or NULL on error */ GIT_EXTERN(git_reference *) git_reference__alloc_symbolic( |
