diff options
author | Sven Strickroth <email@cs-ware.de> | 2018-06-18 13:05:08 +0200 |
---|---|---|
committer | Sven Strickroth <email@cs-ware.de> | 2018-06-18 13:05:08 +0200 |
commit | b5818ddabd9273c71dfd248da92d1d13ac2ace42 (patch) | |
tree | c11b1fd249b2c47445a7090fa97ee098632179be /include/git2/blob.h | |
parent | 96882f201a21ce2a07678b84cf1df0afa41402f9 (diff) | |
download | libgit2-b5818ddabd9273c71dfd248da92d1d13ac2ace42.tar.gz |
Fix last references to deprecated git_buf_free
Signed-off-by: Sven Strickroth <email@cs-ware.de>
Diffstat (limited to 'include/git2/blob.h')
-rw-r--r-- | include/git2/blob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/blob.h b/include/git2/blob.h index 70204c440..ff1a4818f 100644 --- a/include/git2/blob.h +++ b/include/git2/blob.h @@ -105,7 +105,7 @@ GIT_EXTERN(git_off_t) git_blob_rawsize(const git_blob *blob); * attributes set for the blob and the content detected in it. * * The output is written into a `git_buf` which the caller must free - * when done (via `git_buf_free`). + * when done (via `git_buf_dispose`). * * If no filters need to be applied, then the `out` buffer will just * be populated with a pointer to the raw content of the blob. In |