diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2013-07-23 09:40:19 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2013-07-23 09:40:19 +0200 |
commit | c05a55b056509d1146ab55ab1351298789f00751 (patch) | |
tree | 2bf538b3a95c1cb382f659113512af3369ed9a50 /include/git2/pack.h | |
parent | e5bdf82976c631a5b4cc36d8bfad61de609d7802 (diff) | |
download | libgit2-c05a55b056509d1146ab55ab1351298789f00751.tar.gz |
Clean up some documentation
clang's docparser highlighted these.
Diffstat (limited to 'include/git2/pack.h')
-rw-r--r-- | include/git2/pack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/pack.h b/include/git2/pack.h index cc1f48add..976e39cb4 100644 --- a/include/git2/pack.h +++ b/include/git2/pack.h @@ -137,7 +137,7 @@ GIT_EXTERN(int) git_packbuilder_foreach(git_packbuilder *pb, git_packbuilder_for * Get the total number of objects the packbuilder will write out * * @param pb the packbuilder - * @return + * @return the number of objects in the packfile */ GIT_EXTERN(uint32_t) git_packbuilder_object_count(git_packbuilder *pb); @@ -145,7 +145,7 @@ GIT_EXTERN(uint32_t) git_packbuilder_object_count(git_packbuilder *pb); * Get the number of objects the packbuilder has already written out * * @param pb the packbuilder - * @return + * @return the number of objects which have already been written */ GIT_EXTERN(uint32_t) git_packbuilder_written(git_packbuilder *pb); |