summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtienne Samson <samson.etienne@gmail.com>2018-08-29 21:56:26 +0200
committerEtienne Samson <samson.etienne@gmail.com>2018-08-29 21:56:26 +0200
commit7765c0a9ff4f77fd979a0a134bdfc71a1010dafb (patch)
tree7996def13b01565456c704f19a33044b793e9daf
parentdf2f276e41f8b21f518f621043b99f2b34c109fb (diff)
downloadlibgit2-7765c0a9ff4f77fd979a0a134bdfc71a1010dafb.tar.gz
doc: fix comment on GIT_EUSER
-rw-r--r--include/git2/errors.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/git2/errors.h b/include/git2/errors.h
index 00fbed157..7dc4b6c65 100644
--- a/include/git2/errors.h
+++ b/include/git2/errors.h
@@ -27,7 +27,8 @@ typedef enum {
GIT_EAMBIGUOUS = -5, /**< More than one object matches */
GIT_EBUFS = -6, /**< Output buffer too short to hold data */
- /* GIT_EUSER is a special error that is never generated by libgit2
+ /**
+ * GIT_EUSER is a special error that is never generated by libgit2
* code. You can return it from a callback (e.g to stop an iteration)
* to know that it was generated by the callback and not by libgit2.
*/