diff options
| author | Etienne Samson <samson.etienne@gmail.com> | 2018-04-11 22:26:31 +0200 |
|---|---|---|
| committer | Etienne Samson <samson.etienne@gmail.com> | 2018-05-07 21:50:38 +0200 |
| commit | c7b42f44a26ecbaf08aaa209df8a7d5941c01c0a (patch) | |
| tree | 13ae39825dd5bdca9b44bec526188dfb4305926e | |
| parent | 3ec35d9c120fb32f9134142995d4c5cd78c11cbe (diff) | |
| download | libgit2-c7b42f44a26ecbaf08aaa209df8a7d5941c01c0a.tar.gz | |
docs: fix comment style
| -rw-r--r-- | include/git2/blame.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/git2/blame.h b/include/git2/blame.h index cbc6ab6a8..64e745808 100644 --- a/include/git2/blame.h +++ b/include/git2/blame.h @@ -67,15 +67,18 @@ typedef struct git_blame_options { uint16_t min_match_characters; /** The id of the newest commit to consider. The default is HEAD. */ git_oid newest_commit; - /** The id of the oldest commit to consider. + /** + * The id of the oldest commit to consider. * The default is the first commit encountered with a NULL parent. */ git_oid oldest_commit; - /** The first line in the file to blame. + /** + * The first line in the file to blame. * The default is 1 (line numbers start with 1). */ size_t min_line; - /** The last line in the file to blame. + /** + * The last line in the file to blame. * The default is the last line of the file. */ size_t max_line; |
