Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Chatelain <benchatelain@gmail.com>2015-07-28 17:28:33 +0300
committerBen Chatelain <benchatelain@gmail.com>2015-07-28 17:28:33 +0300
commit6d8f3a5162f3160069a2cbafeb44e9ffd4ebe77c (patch)
tree87519730e25f3928c6665768ee4408de95fedea8 /src
parent08afd227dfd3ee56accd6d6ded3889f34c5329fc (diff)
Better param docs
Diffstat (limited to 'src')
-rw-r--r--src/push.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/push.h b/src/push.h
index 53890f54b..a847ee0d0 100644
--- a/src/push.h
+++ b/src/push.h
@@ -83,7 +83,7 @@ int git_push_add_refspec(git_push *push, const char *refspec);
* Update remote tips after a push
*
* @param push The push object
- * @param callbacks The identity to use when updating reflogs
+ * @param callbacks the callbacks to use for this connection
*
* @return 0 or an error code
*/
@@ -100,6 +100,7 @@ int git_push_update_tips(git_push *push, const git_remote_callbacks *callbacks);
* order to find out which updates were accepted or rejected.
*
* @param push The push object
+ * @param callbacks the callbacks to use for this connection
*
* @return 0 or an error code
*/
@@ -117,6 +118,7 @@ int git_push_finish(git_push *push, const git_remote_callbacks *callbacks);
*
* @param push The push object
* @param cb The callback to call on each object
+ * @param data The payload passed to the callback
*
* @return 0 on success, non-zero callback return value, or error code
*/