Commit 8087498dc519f40ac099d31d9f29eb1544f62329

Patrick Steinhardt 2020-09-18T10:49:24

Merge pull request #5631 from csware/issue-5611 Fix deprecation links inside of documentation not working

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/include/git2/deprecated.h b/include/git2/deprecated.h
index ffef145..a5521c6 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,