diff options
Diffstat (limited to 'include/git2/notes.h')
-rw-r--r-- | include/git2/notes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/notes.h b/include/git2/notes.h index e98c75ed..f688f014 100644 --- a/include/git2/notes.h +++ b/include/git2/notes.h @@ -54,13 +54,13 @@ GIT_EXTERN(const git_oid *) git_note_oid(git_note *note); /** * Add a note for an object * - * @param oid pointer to store the OID (optional); NULL in case of error + * @param out pointer to store the OID (optional); NULL in case of error * @param repo the Git repository * @param author signature of the notes commit author * @param committer signature of the notes commit committer * @param notes_ref OID reference to update (optional); defaults to "refs/notes/commits" * @param oid The OID of the object - * @param oid The note to add for object oid + * @param note The note to add for object oid * * @return 0 or an error code */ @@ -77,7 +77,7 @@ GIT_EXTERN(int) git_note_create(git_oid *out, git_repository *repo, * @param notes_ref OID reference to use (optional); defaults to "refs/notes/commits" * @param author signature of the notes commit author * @param committer signature of the notes commit committer - * @param oid the oid which note's to be removed + * @param oid The OID of the git object to remove the note from * * @return 0 or an error code */ |