Commit 090e7d85ac252af1dabcf7a8ec00c0438aeee3fc

Sven Strickroth 2020-09-10T22:41:15

Fix deprecation links inside of documentation not working Signed-off-by: Sven Strickroth <email@cs-ware.de>

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,