Commit 1bb11859 by Vicent Marti Committed by Andreas Ericsson

Fixed typos in the revwalk API documentation

Signed-off-by: Vicent Marti <tanoku@gmail.com>
Signed-off-by: Andreas Ericsson <ae@op5.se>
parent 38c513b9
...@@ -36,14 +36,14 @@ GIT_EXTERN(void) gitrp_reset(git_revpool *pool); ...@@ -36,14 +36,14 @@ GIT_EXTERN(void) gitrp_reset(git_revpool *pool);
/** /**
* Mark an object to start traversal from. * Mark an object to start traversal from.
* @param pool the pool being used for the traversal. * @param pool the pool being used for the traversal.
* @param commit the commit the commit to start from. * @param commit the commit to start from.
*/ */
GIT_EXTERN(void) gitrp_push(git_revpool *pool, git_commit *commit); GIT_EXTERN(void) gitrp_push(git_revpool *pool, git_commit *commit);
/** /**
* Mark a commit (and its ancestors) uninteresting for the output. * Mark a commit (and its ancestors) uninteresting for the output.
* @param pool the pool being used for the traversal. * @param pool the pool being used for the traversal.
* @param commit the commit the commit to start from. * @param commit the commit that will be ignored during the traversal
*/ */
GIT_EXTERN(void) gitrp_hide(git_revpool *pool, git_commit *commit); GIT_EXTERN(void) gitrp_hide(git_revpool *pool, git_commit *commit);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment