diff options
Diffstat (limited to 'include/git2/clone.h')
-rw-r--r-- | include/git2/clone.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/clone.h b/include/git2/clone.h index 73b6ea54..f134a045 100644 --- a/include/git2/clone.h +++ b/include/git2/clone.h @@ -30,7 +30,7 @@ GIT_BEGIN_DECL * @param workdir_path local directory to clone to * @param fetch_stats pointer to structure that receives fetch progress information (may be NULL) * @param checkout_opts options for the checkout step (may be NULL) - * @return 0 on success, GIT_ERROR otherwise (use git_error_last for information about the error) + * @return 0 on success, GIT_ERROR otherwise (use giterr_last for information about the error) */ GIT_EXTERN(int) git_clone(git_repository **out, const char *origin_url, @@ -46,7 +46,7 @@ GIT_EXTERN(int) git_clone(git_repository **out, * @param origin_url repository to clone from * @param dest_path local directory to clone to * @param fetch_stats pointer to structure that receives fetch progress information (may be NULL) - * @return 0 on success, GIT_ERROR otherwise (use git_error_last for information about the error) + * @return 0 on success, GIT_ERROR otherwise (use giterr_last for information about the error) */ GIT_EXTERN(int) git_clone_bare(git_repository **out, const char *origin_url, |