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
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-11-20 14:52:57 +0400
committerCarlos Martín Nieto <cmn@dwim.me>2013-11-20 14:55:32 +0400
commit1b3fe73c8dba597a8c7ff97e4e78acac6d58b1a9 (patch)
tree4f7a826b598d8656cf981616671d5451a49784f3
parente479628a01eddafd357bd3b49526ab49998edcef (diff)
Formatting fix for cred_acquire_cb
-rw-r--r--include/git2/transport.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/git2/transport.h b/include/git2/transport.h
index fe4883f99..caabd0465 100644
--- a/include/git2/transport.h
+++ b/include/git2/transport.h
@@ -167,13 +167,13 @@ GIT_EXTERN(int) git_cred_default_new(git_cred **out);
/**
* Signature of a function which acquires a credential object.
*
- * @param cred The newly created credential object.
- * @param url The resource for which we are demanding a credential.
- * @param username_from_url The username that was embedded in a "user@host"
+ * - cred: The newly created credential object.
+ * - url: The resource for which we are demanding a credential.
+ * - username_from_url: The username that was embedded in a "user@host"
* remote url, or NULL if not included.
- * @param allowed_types A bitmask stating which cred types are OK to return.
- * @param payload The payload provided when specifying this callback.
- * @return 0 for success or an error code for failure
+ * - allowed_types: A bitmask stating which cred types are OK to return.
+ * - payload: The payload provided when specifying this callback.
+ * - returns 0 for success or non-zero to indicate an error
*/
typedef int (*git_cred_acquire_cb)(
git_cred **cred,