summaryrefslogtreecommitdiff
path: root/include/git2/commit.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-06-16 03:02:46 +0200
committerVicent Marti <tanoku@gmail.com>2011-06-16 03:06:22 +0200
commitd144c569f372aace4b71e595cb541111730edce4 (patch)
treebe63023d8be74794fbe4e12214116914a1dad92b /include/git2/commit.h
parentf1d018513aced2fb4e6c87f2d417b6f826dbe998 (diff)
downloadlibgit2-d144c569f372aace4b71e595cb541111730edce4.tar.gz
Update documentation
Fix all the missmatched arguments in the docs
Diffstat (limited to 'include/git2/commit.h')
-rw-r--r--include/git2/commit.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/git2/commit.h b/include/git2/commit.h
index cf14cd937..356b875cd 100644
--- a/include/git2/commit.h
+++ b/include/git2/commit.h
@@ -195,7 +195,6 @@ GIT_EXTERN(const git_oid *) git_commit_parent_oid(git_commit *commit, unsigned i
/**
* Create a new commit in the repository
*
- *
* @param oid Pointer where to store the OID of the
* newly created commit
*
@@ -221,7 +220,7 @@ GIT_EXTERN(const git_oid *) git_commit_parent_oid(git_commit *commit, unsigned i
*
* @param parent_count Number of parents for this commit
*
- * @param parents Array of pointers to parent OIDs for this commit.
+ * @param parent_oids[] Array of pointers to parent OIDs for this commit.
* Note that no validation is performed on these OIDs. Use the _o
* variants of this method to assure that are parents for the commit
* are proper objects.