diff options
| author | Michael Anderson <drmikeando@gmail.com> | 2014-05-22 17:16:21 +0800 | 
|---|---|---|
| committer | Michael Anderson <drmikeando@gmail.com> | 2014-05-23 15:57:20 +0800 | 
| commit | 31b0cb518f11d4ec8a95df54d077d51b05fa899c (patch) | |
| tree | fa0ddcdaf97f7ee5c6a3c4edb8aa85a4d8549b7a /include/git2/errors.h | |
| parent | 530594c0aa04df31e3cef331f6dad8083f66f15d (diff) | |
| download | libgit2-31b0cb518f11d4ec8a95df54d077d51b05fa899c.tar.gz | |
Fixed miscellaneous documentation errors.
Diffstat (limited to 'include/git2/errors.h')
| -rw-r--r-- | include/git2/errors.h | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/include/git2/errors.h b/include/git2/errors.h index e22f0d86d..c914653fc 100644 --- a/include/git2/errors.h +++ b/include/git2/errors.h @@ -19,13 +19,13 @@ GIT_BEGIN_DECL  /** Generic return codes */  typedef enum { -	GIT_OK         =  0,		/*< No error */ +	GIT_OK         =  0,		/**< No error */ -	GIT_ERROR      = -1,		/*< Generic error */ -	GIT_ENOTFOUND  = -3,		/*< Requested object could not be found */ -	GIT_EEXISTS    = -4,		/*< Object exists preventing operation */ -	GIT_EAMBIGUOUS = -5,		/*< More than one object matches */ -	GIT_EBUFS      = -6,		/*< Output buffer too short to hold data */ +	GIT_ERROR      = -1,		/**< Generic error */ +	GIT_ENOTFOUND  = -3,		/**< Requested object could not be found */ +	GIT_EEXISTS    = -4,		/**< Object exists preventing operation */ +	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  	 * code.  You can return it from a callback (e.g to stop an iteration) @@ -33,17 +33,17 @@ typedef enum {  	 */  	GIT_EUSER      = -7, -	GIT_EBAREREPO       =  -8,	/*< Operation not allowed on bare repository */ -	GIT_EUNBORNBRANCH   =  -9,	/*< HEAD refers to branch with no commits */ -	GIT_EUNMERGED       = -10,	/*< Merge in progress prevented operation */ -	GIT_ENONFASTFORWARD = -11,	/*< Reference was not fast-forwardable */ -	GIT_EINVALIDSPEC    = -12,	/*< Name/ref spec was not in a valid format */ -	GIT_EMERGECONFLICT  = -13,	/*< Merge conflicts prevented operation */ -	GIT_ELOCKED         = -14,	/*< Lock file prevented operation */ -	GIT_EMODIFIED       = -15,	/*< Reference value does not match expected */ +	GIT_EBAREREPO       =  -8,	/**< Operation not allowed on bare repository */ +	GIT_EUNBORNBRANCH   =  -9,	/**< HEAD refers to branch with no commits */ +	GIT_EUNMERGED       = -10,	/**< Merge in progress prevented operation */ +	GIT_ENONFASTFORWARD = -11,	/**< Reference was not fast-forwardable */ +	GIT_EINVALIDSPEC    = -12,	/**< Name/ref spec was not in a valid format */ +	GIT_EMERGECONFLICT  = -13,	/**< Merge conflicts prevented operation */ +	GIT_ELOCKED         = -14,	/**< Lock file prevented operation */ +	GIT_EMODIFIED       = -15,	/**< Reference value does not match expected */ -	GIT_PASSTHROUGH     = -30,	/*< Internal only */ -	GIT_ITEROVER        = -31,	/*< Signals end of iteration with iterator */ +	GIT_PASSTHROUGH     = -30,	/**< Internal only */ +	GIT_ITEROVER        = -31,	/**< Signals end of iteration with iterator */  } git_error_code;  /** | 
