summaryrefslogtreecommitdiff
path: root/include/git2/annotated_commit.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-02-11 23:44:05 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2015-02-11 23:44:05 +0100
commitdc63c0496ba6318946b989bf5a9fefc64732d450 (patch)
treeafb4fe9118b2dd6be7500d6fbf8523077647fba2 /include/git2/annotated_commit.h
parenta36486ef26dac5f4f359cc54c865b91bbc31767e (diff)
parentc03e8c224cf18104bc97a68aed85317820d062ae (diff)
downloadlibgit2-dc63c0496ba6318946b989bf5a9fefc64732d450.tar.gz
Merge pull request #2893 from phatblat/ben/pr/doc-comments
Fix doc comment formatting
Diffstat (limited to 'include/git2/annotated_commit.h')
-rw-r--r--include/git2/annotated_commit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/annotated_commit.h b/include/git2/annotated_commit.h
index 87e3398a0..e842d2032 100644
--- a/include/git2/annotated_commit.h
+++ b/include/git2/annotated_commit.h
@@ -44,7 +44,7 @@ GIT_EXTERN(int) git_annotated_commit_from_ref(
* @param repo repository that contains the given commit
* @param branch_name name of the (remote) branch
* @param remote_url url of the remote
- * @param oid the commit object id of the remote branch
+ * @param id the commit object id of the remote branch
* @return 0 on success or error code
*/
GIT_EXTERN(int) git_annotated_commit_from_fetchhead(
@@ -80,7 +80,7 @@ GIT_EXTERN(int) git_annotated_commit_lookup(
/**
* Gets the commit ID that the given `git_annotated_commit` refers to.
*
- * @param head the given annotated commit
+ * @param commit the given annotated commit
* @return commit id
*/
GIT_EXTERN(const git_oid *) git_annotated_commit_id(
@@ -89,7 +89,7 @@ GIT_EXTERN(const git_oid *) git_annotated_commit_id(
/**
* Frees a `git_annotated_commit`.
*
- * @param annotated_commit annotated commit to free
+ * @param commit annotated commit to free
*/
GIT_EXTERN(void) git_annotated_commit_free(
git_annotated_commit *commit);