summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2020-09-18 10:49:24 +0200
committerGitHub <noreply@github.com>2020-09-18 10:49:24 +0200
commit8087498dc519f40ac099d31d9f29eb1544f62329 (patch)
tree6fc2190c29953afb2d38b35ecbdbee2d6c520e0a
parent9e81711bace51b1d3e233675c85b289743f5fdd7 (diff)
parent090e7d85ac252af1dabcf7a8ec00c0438aeee3fc (diff)
downloadlibgit2-8087498dc519f40ac099d31d9f29eb1544f62329.tar.gz
Merge pull request #5631 from csware/issue-5611
Fix deprecation links inside of documentation not working
-rw-r--r--include/git2/deprecated.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/git2/deprecated.h b/include/git2/deprecated.h
index ffef14597..a5521c6a6 100644
--- a/include/git2/deprecated.h
+++ b/include/git2/deprecated.h
@@ -102,7 +102,11 @@ GIT_EXTERN(int) git_blob_create_fromstream_commit(
GIT_EXTERN(int) git_blob_create_frombuffer(
git_oid *id, git_repository *repo, const void *buffer, size_t len);
-/** Deprecated in favor of @see git_blob_filter */
+/** Deprecated in favor of `git_blob_filter`.
+ *
+ * @deprecated Use git_blob_filter
+ * @see git_blob_filter
+ */
GIT_EXTERN(int) git_blob_filtered_content(
git_buf *out,
git_blob *blob,