summaryrefslogtreecommitdiff
path: root/include/git2/revparse.h
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-04-15 13:29:40 -0700
committerBen Straub <bs@github.com>2013-04-15 13:29:40 -0700
commit201566539f38874b4e93c6a36593bd0d10e6352c (patch)
treeb7475fa99d7d170096f8c771cb9cc0836be819b4 /include/git2/revparse.h
parent5961d5ea7f77cc442ec7d7c9f698f8c96c050298 (diff)
downloadlibgit2-201566539f38874b4e93c6a36593bd0d10e6352c.tar.gz
Clean up minor details
Diffstat (limited to 'include/git2/revparse.h')
-rw-r--r--include/git2/revparse.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/git2/revparse.h b/include/git2/revparse.h
index 4f8c274a4..a992d2c48 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);
/**