diff options
author | nulltoken <emeric.fermas@gmail.com> | 2012-07-20 16:31:17 +0200 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2012-07-24 16:09:46 +0200 |
commit | abee7bd36a8a00e9578d3c94b1b7080f5b5c7dc8 (patch) | |
tree | 32f5e558d0f6a2df3075e06d313ac7c5da32afc2 /include/git2/branch.h | |
parent | 88bcd5153f6dc9e0c7ebc73a1e87c0da17e8df28 (diff) | |
download | libgit2-abee7bd36a8a00e9578d3c94b1b7080f5b5c7dc8.tar.gz |
branch: slight git_branch_create() doc improvement
Diffstat (limited to 'include/git2/branch.h')
-rw-r--r-- | include/git2/branch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/branch.h b/include/git2/branch.h index fb30aaa26..fcddb9332 100644 --- a/include/git2/branch.h +++ b/include/git2/branch.h @@ -28,7 +28,7 @@ GIT_BEGIN_DECL * * The returned reference must be freed by the user. * - * @param ref_out Pointer where to store the underlying reference. + * @param branch_out Pointer where to store the underlying reference. * * @param branch_name Name for the branch; this name is * validated for consistency. It should also not conflict with @@ -46,7 +46,7 @@ GIT_BEGIN_DECL * pointing to the provided target commit. */ GIT_EXTERN(int) git_branch_create( - git_reference **ref_out, + git_reference **branch_out, const char *branch_name, const git_object *target, int force); |