diff options
author | Benjamin C Meyer <ben@meyerhome.net> | 2010-10-25 22:26:14 -0700 |
---|---|---|
committer | Benjamin C Meyer <ben@meyerhome.net> | 2010-10-25 22:32:52 -0700 |
commit | 0d95f32c55a18303a87147467ebd68ea24995753 (patch) | |
tree | 3338236523d2c8b5b1a5ae1f72187fee685da096 /src/git/commit.h | |
parent | 0037e4919bcb53f7441a18c992d0cc70e8d1d931 (diff) | |
download | libgit2-0d95f32c55a18303a87147467ebd68ea24995753.tar.gz |
Change /* to /** at the start of comment blocks in public api so doxygen
will generate documenation and not hide them.
Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
Diffstat (limited to 'src/git/commit.h')
-rw-r--r-- | src/git/commit.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/git/commit.h b/src/git/commit.h index 6b5f98fac..308f30f35 100644 --- a/src/git/commit.h +++ b/src/git/commit.h @@ -30,7 +30,7 @@ typedef struct git_commit git_commit; */ GIT_EXTERN(git_commit *) git_commit_lookup(git_repository *repo, const git_oid *id); -/* +/** * Create a new in-memory git_commit. * * The commit object must be manually filled using @@ -91,35 +91,35 @@ GIT_EXTERN(const git_person *) git_commit_author(git_commit *commit); */ GIT_EXTERN(const git_tree *) git_commit_tree(git_commit *commit); -/* +/** * Add a new parent commit to an existing commit * @param commit the commit object * @param new_parent the new commit which will be a parent */ GIT_EXTERN(void) git_commit_add_parent(git_commit *commit, git_commit *new_parent); -/* +/** * Set the message of a commit * @param commit the commit object * @param message the new message */ GIT_EXTERN(void) git_commit_set_message(git_commit *commit, const char *message); -/* +/** * Set the committer of a commit * @param commit the commit object * @param committer the new committer */ GIT_EXTERN(void) git_commit_set_committer(git_commit *commit, const git_person *committer); -/* +/** * Set the author of a commit * @param commit the commit object * @param author the new author */ GIT_EXTERN(void) git_commit_set_author(git_commit *commit, const git_person *author); -/* +/** * Set the tree which is pointed to by a commit * @param commit the commit object * @param tree the new tree |