Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Chatelain <ben@octop.ad>2015-07-28 02:42:08 +0300
committerBen Chatelain <ben@octop.ad>2015-07-28 02:42:08 +0300
commitf90fbb8d22c77fbc4d207ef68a9fd445e68602db (patch)
tree662deb957e91004bc8d9bb78e31b44c00605ffe0
parent41808d04705644b8af566c9039a3ddcbb3257c99 (diff)
Use correct Doxygen trailing comment syntax
-rw-r--r--include/git2/sys/diff.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/git2/sys/diff.h b/include/git2/sys/diff.h
index 034d5c478..aa6fed757 100644
--- a/include/git2/sys/diff.h
+++ b/include/git2/sys/diff.h
@@ -38,7 +38,7 @@ GIT_EXTERN(int) git_diff_print_callback__to_buf(
const git_diff_delta *delta,
const git_diff_hunk *hunk,
const git_diff_line *line,
- void *payload); /*< payload must be a `git_buf *` */
+ void *payload); /**< payload must be a `git_buf *` */
/**
* Diff print callback that writes to stdio FILE handle.
@@ -58,7 +58,7 @@ GIT_EXTERN(int) git_diff_print_callback__to_file_handle(
const git_diff_delta *delta,
const git_diff_hunk *hunk,
const git_diff_line *line,
- void *payload); /*< payload must be a `FILE *` */
+ void *payload); /**< payload must be a `FILE *` */
/**
@@ -66,8 +66,8 @@ GIT_EXTERN(int) git_diff_print_callback__to_file_handle(
*/
typedef struct {
unsigned int version;
- size_t stat_calls; /*< Number of stat() calls performed */
- size_t oid_calculations; /*< Number of ID calculations */
+ size_t stat_calls; /**< Number of stat() calls performed */
+ size_t oid_calculations; /**</**< Number of ID calculations */
} git_diff_perfdata;
#define GIT_DIFF_PERFDATA_VERSION 1