diff options
author | jerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68> | 2002-11-10 08:35:16 +0000 |
---|---|---|
committer | jerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68> | 2002-11-10 08:35:16 +0000 |
commit | f3c82866bb98fed868cdd8d124f3ab03fe4f3617 (patch) | |
tree | 0706c9dcb9d80ee34b95fef0edcc656533723049 /include/apr_errno.h | |
parent | 89af3531d0002b29d63bfb2ff24adfda50a5d279 (diff) | |
download | libapr-f3c82866bb98fed868cdd8d124f3ab03fe4f3617.tar.gz |
Go through doxygen output and remove as many errors and warnings as I could.
No code changes.
(Note removal of #define duplication in apr_poll.h/apr_network_io.h of the
APR_POLL* values. This appears to have been an oversight and is now just
in apr_poll.h)
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_errno.h')
-rw-r--r-- | include/apr_errno.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_errno.h b/include/apr_errno.h index ccbf19566..ed3fe0540 100644 --- a/include/apr_errno.h +++ b/include/apr_errno.h @@ -94,7 +94,7 @@ APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf, * @def APR_FROM_OS_ERROR(os_err_type syserr) * Fold a platform specific error into an apr_status_t code. * @return apr_status_t - * @param syserr The platform os error code. + * @param e The platform os error code. * @warning macro implementation; the syserr argument may be evaluated * multiple times. */ @@ -104,7 +104,7 @@ APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf, * @def APR_TO_OS_ERROR(apr_status_t statcode) * @return os_err_type * Fold an apr_status_t code back to the native platform defined error. - * @param syserr The apr_status_t folded platform os error code. + * @param e The apr_status_t folded platform os error code. * @warning macro implementation; the statcode argument may be evaluated * multiple times. If the statcode was not created by apr_get_os_error * or APR_FROM_OS_ERROR, the results are undefined. |