diff options
author | Vicent Marti <vicent@github.com> | 2014-01-27 09:39:36 -0800 |
---|---|---|
committer | Vicent Marti <vicent@github.com> | 2014-01-27 09:39:36 -0800 |
commit | 93954245e081ff803028431c5da2c8a073512643 (patch) | |
tree | cb9a16891871bead0af7188f7400c8e7ae4c8692 /include/git2/notes.h | |
parent | 46e7fc1853bb92a2deae93543477f1c1255352d0 (diff) | |
parent | a1bbc0ce205b6d3496338d3253c847aa91cabc7b (diff) | |
download | libgit2-93954245e081ff803028431c5da2c8a073512643.tar.gz |
Merge pull request #2075 from libgit2/cmn/leftover-oid
Leftover OID -> ID changes
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 0cb6ce5f1..98eb2aef3 100644 --- a/include/git2/notes.h +++ b/include/git2/notes.h @@ -106,12 +106,12 @@ GIT_EXTERN(const char *) git_note_message(const git_note *note); /** - * Get the note object OID + * Get the note object's id * * @param note the note - * @return the note object OID + * @return the note object's id */ -GIT_EXTERN(const git_oid *) git_note_oid(const git_note *note); +GIT_EXTERN(const git_oid *) git_note_id(const git_note *note); /** * Add a note for an object |