Commit 1bb11859357114684a1a740e471edf1a7541b82a

Vicent Marti 2010-05-06T21:35:18

Fixed typos in the revwalk API documentation Signed-off-by: Vicent Marti <tanoku@gmail.com> Signed-off-by: Andreas Ericsson <ae@op5.se>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/git/revwalk.h b/src/git/revwalk.h
index 5fac2a6..4e7e9f6 100644
--- a/src/git/revwalk.h
+++ b/src/git/revwalk.h
@@ -36,14 +36,14 @@ GIT_EXTERN(void) gitrp_reset(git_revpool *pool);
 /**
  * Mark an object to start traversal from.
  * @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);
 
 /**
  * Mark a commit (and its ancestors) uninteresting for the output.
  * @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);