summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-12-16 21:58:47 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2015-12-16 21:58:47 +0100
commit4baf2d8bdf5be87761ec5bfebaa4b2b5105719d0 (patch)
tree7ead5f878270607e3e0a0394d29974966c0d0818
parentf824259e674e6fa483f0b6651beff2d82127be6f (diff)
parentcf339ede0abf066e8a1f4f7625878f837a78b84c (diff)
downloadlibgit2-4baf2d8bdf5be87761ec5bfebaa4b2b5105719d0.tar.gz
Merge pull request #3548 from tepas/patch-1
fix git_blob_create_fromchunks documentation
-rw-r--r--include/git2/blob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/blob.h b/include/git2/blob.h
index 4a6d8e50a..9a57c37f5 100644
--- a/include/git2/blob.h
+++ b/include/git2/blob.h
@@ -171,8 +171,8 @@ typedef int (*git_blob_chunk_cb)(char *content, size_t max_length, void *payload
* - The `callback` must return the number of bytes that have been
* written to the `content` buffer.
*
- * - When there is no more data to stream, `callback` should return
- * 0. This will prevent it from being invoked anymore.
+ * - When there is no more data to stream, `callback` should return 0.
+ * This will prevent it from being invoked anymore.
*
* - If an error occurs, the callback should return a negative value.
* This value will be returned to the caller.