diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2014-06-02 18:53:32 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-06-03 16:05:35 +0200 |
commit | 11e2665e5040066cc251a45d017f37d2b0bd0617 (patch) | |
tree | 53e994dd66a3c76ddaa5cfeca5e3ae8fa26c8530 /include/git2/reset.h | |
parent | 2f6f6ebc9937220302875de96ce129919296670a (diff) | |
download | libgit2-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.h | 6 |
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; /** |