summaryrefslogtreecommitdiff
path: root/include/git2/reset.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-06-02 18:53:32 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-06-03 16:05:35 +0200
commit11e2665e5040066cc251a45d017f37d2b0bd0617 (patch)
tree53e994dd66a3c76ddaa5cfeca5e3ae8fa26c8530 /include/git2/reset.h
parent2f6f6ebc9937220302875de96ce129919296670a (diff)
downloadlibgit2-11e2665e5040066cc251a45d017f37d2b0bd0617.tar.gz
Formatting fixes for the docs
These are some issues I found while playing around with the new parser for docurium.
Diffstat (limited to 'include/git2/reset.h')
-rw-r--r--include/git2/reset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/reset.h b/include/git2/reset.h
index 1759cc036..b8c580339 100644
--- a/include/git2/reset.h
+++ b/include/git2/reset.h
@@ -19,9 +19,9 @@ GIT_BEGIN_DECL
* Kinds of reset operation
*/
typedef enum {
- GIT_RESET_SOFT = 1, /** Move the head to the given commit */
- GIT_RESET_MIXED = 2, /** SOFT plus reset index to the commit */
- GIT_RESET_HARD = 3, /** MIXED plus changes in working tree discarded */
+ GIT_RESET_SOFT = 1, /**< Move the head to the given commit */
+ GIT_RESET_MIXED = 2, /**< SOFT plus reset index to the commit */
+ GIT_RESET_HARD = 3, /**< MIXED plus changes in working tree discarded */
} git_reset_t;
/**