summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Strickroth <email@cs-ware.de>2020-09-10 22:41:15 +0200
committerSven Strickroth <email@cs-ware.de>2020-09-10 22:41:15 +0200
commit090e7d85ac252af1dabcf7a8ec00c0438aeee3fc (patch)
treeacd55fff84091ae4dbca63b11bdb6fb9458a7a10
parent1e987525b3bd86fc29e7ff67d973861efd22faf7 (diff)
downloadlibgit2-090e7d85ac252af1dabcf7a8ec00c0438aeee3fc.tar.gz
Fix deprecation links inside of documentation not working
Signed-off-by: Sven Strickroth <email@cs-ware.de>
-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,