diff options
author | Vicent Martà <vicent@github.com> | 2013-01-09 08:43:19 -0800 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-01-09 08:43:19 -0800 |
commit | 252b24049cf7018ba80c736fda636c53c465fbd2 (patch) | |
tree | c148f738f71d8a9472e3c455096de76221b62ac5 /include/git2/refs.h | |
parent | 11fccddcb513b30d841160ddb411a4828be3ed91 (diff) | |
parent | abeefbbe18710f86077eb4c5b825255256b8b6bc (diff) | |
download | libgit2-252b24049cf7018ba80c736fda636c53c465fbd2.tar.gz |
Merge pull request #1214 from schu/push-handle-tags
push: properly handle tags
Diffstat (limited to 'include/git2/refs.h')
-rw-r--r-- | include/git2/refs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/refs.h b/include/git2/refs.h index a0abbc339..d586917c2 100644 --- a/include/git2/refs.h +++ b/include/git2/refs.h @@ -44,7 +44,7 @@ GIT_EXTERN(int) git_reference_lookup(git_reference **out, git_repository *repo, * allocate or free any `git_reference` objects for simple situations. * * The name will be checked for validity. - * See `git_reference_create_symbolic()` for rules about valid names. + * See `git_reference_symbolic_create()` for rules about valid names. * * @param out Pointer to oid to be filled in * @param repo The repository in which to look up the reference @@ -124,7 +124,7 @@ GIT_EXTERN(int) git_reference_create(git_reference **out, git_repository *repo, * not a symbolic one). * * To find the OID of a symbolic ref, call `git_reference_resolve()` and - * then this function (or maybe use `git_reference_name_to_oid()` to + * then this function (or maybe use `git_reference_name_to_id()` to * directly resolve a reference name all the way through to an OID). * * @param ref The reference |