Clean up minor details
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
diff --git a/examples/diff.c b/examples/diff.c
index a977abd..2ef4056 100644
--- a/examples/diff.c
+++ b/examples/diff.c
@@ -17,7 +17,7 @@ static int resolve_to_tree(
int err = 0;
git_object *obj = NULL;
- if ((err =git_revparse(&obj, NULL, NULL, repo, identifier)) < 0)
+ if ((err = git_revparse_single(&obj, repo, identifier)) < 0)
return err;
switch (git_object_type(obj)) {
diff --git a/include/git2/revparse.h b/include/git2/revparse.h
index 4f8c274..a992d2c 100644
--- a/include/git2/revparse.h
+++ b/include/git2/revparse.h
@@ -21,7 +21,6 @@
GIT_BEGIN_DECL
/**
- *
* Find a single object, as specified by a revision string. See `man gitrevisions`,
* or http://git-scm.com/docs/git-rev-parse.html#_specifying_revisions for
* information on the syntax accepted.
@@ -31,8 +30,7 @@ GIT_BEGIN_DECL
* @param spec the textual specification for an object
* @return 0 on success, GIT_ENOTFOUND, GIT_EAMBIGUOUS, GIT_EINVALIDSPEC or an error code
*/
-GIT_EXTERN(int) git_revparse_single(git_object **out, git_repository *repo,
- const char *spec);
+GIT_EXTERN(int) git_revparse_single(git_object **out, git_repository *repo, const char *spec);
/**
diff --git a/include/git2/revwalk.h b/include/git2/revwalk.h
index c9f7372..8bfe0b5 100644
--- a/include/git2/revwalk.h
+++ b/include/git2/revwalk.h
@@ -221,7 +221,7 @@ GIT_EXTERN(void) git_revwalk_sorting(git_revwalk *walk, unsigned int sort_mode);
*
* The range should be of the form
* <commit>..<commit>
- * where each <commit> is in the form accepted by 'git_revparse'.
+ * where each <commit> is in the form accepted by 'git_revparse_single'.
* The left-hand commit will be hidden and the right-hand commit pushed.
*
* @param walk the walker being used for the traversal