Commit 7765c0a9ff4f77fd979a0a134bdfc71a1010dafb

Etienne Samson 2018-08-29T21:56:26

doc: fix comment on GIT_EUSER

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/include/git2/errors.h b/include/git2/errors.h
index 00fbed1..7dc4b6c 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.
 	 */