diff options
author | Russell Belfer <rb@github.com> | 2013-12-09 10:17:47 -0800 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-12-11 10:57:50 -0800 |
commit | 373cf6a932a64d1cbe5f5cd8333546dcc2ca0b92 (patch) | |
tree | db7ea9e143659e4cc6056cfb4467e29adfe81687 /include/git2/patch.h | |
parent | 26c1cb91beccb44425864bd233ed0e35f5801868 (diff) | |
download | libgit2-373cf6a932a64d1cbe5f5cd8333546dcc2ca0b92.tar.gz |
Update docs for new callback return value behavior
Diffstat (limited to 'include/git2/patch.h')
-rw-r--r-- | include/git2/patch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/patch.h b/include/git2/patch.h index 6a6ad92d7..e09f625c0 100644 --- a/include/git2/patch.h +++ b/include/git2/patch.h @@ -218,13 +218,13 @@ GIT_EXTERN(size_t) git_patch_size( * Serialize the patch to text via callback. * * Returning a non-zero value from the callback will terminate the iteration - * and cause this return `GIT_EUSER`. + * and return that value to the caller. * * @param patch A git_patch representing changes to one file * @param print_cb Callback function to output lines of the patch. Will be * called for file headers, hunk headers, and diff lines. * @param payload Reference pointer that will be passed to your callbacks. - * @return 0 on success, GIT_EUSER on non-zero callback, or error code + * @return 0 on success, non-zero callback return value, or error code */ GIT_EXTERN(int) git_patch_print( git_patch *patch, |