summaryrefslogtreecommitdiff
path: root/include/apr_portable.h
diff options
context:
space:
mode:
authorminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2009-09-25 20:04:56 +0000
committerminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2009-09-25 20:04:56 +0000
commit35c038b742f40e4b2192e6a30bc9740dde030563 (patch)
tree4b6d6d63c9d0a0ec61aa9594467d3c6162f9bf52 /include/apr_portable.h
parent1a2951877e03f1947f01a805375afd658da96885 (diff)
downloadlibapr-35c038b742f40e4b2192e6a30bc9740dde030563.tar.gz
Fix a bunch of typos in the doxygen comments for public include files
in APR Submitted by: Neil Conway <nrc cs.berkeley.edu> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@818977 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_portable.h')
-rw-r--r--include/apr_portable.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/apr_portable.h b/include/apr_portable.h
index b1b21e37b..7e52afc4f 100644
--- a/include/apr_portable.h
+++ b/include/apr_portable.h
@@ -16,7 +16,7 @@
/* This header file is where you should put ANY platform specific information.
* This should be the only header file that programs need to include that
- * actually has platform dependant code which refers to the .
+ * actually has platform dependent code which refers to the .
*/
#ifndef APR_PORTABLE_H
#define APR_PORTABLE_H
@@ -145,7 +145,7 @@ struct apr_os_proc_mutex_t {
typedef int apr_os_file_t; /**< native file */
typedef DIR apr_os_dir_t; /**< native dir */
typedef int apr_os_sock_t; /**< native dir */
-typedef struct apr_os_proc_mutex_t apr_os_proc_mutex_t; /**< native proces
+typedef struct apr_os_proc_mutex_t apr_os_proc_mutex_t; /**< native process
* mutex
*/
#if APR_HAS_THREADS && APR_HAVE_PTHREAD_H
@@ -235,7 +235,7 @@ APR_DECLARE(apr_status_t) apr_os_dir_get(apr_os_dir_t **thedir,
/**
* Convert the socket from an apr type to an OS specific socket
* @param thesock The socket to convert.
- * @param sock The os specifc equivelant of the apr socket..
+ * @param sock The os specific equivalent of the apr socket..
*/
APR_DECLARE(apr_status_t) apr_os_sock_get(apr_os_sock_t *thesock,
apr_socket_t *sock);
@@ -450,7 +450,7 @@ APR_DECLARE(apr_status_t) apr_os_shm_put(apr_shm_t **shm,
#if APR_HAS_DSO || defined(DOXYGEN)
/**
- * @defgroup apr_os_dso DSO (Dynamic Loading) Portabiliity Routines
+ * @defgroup apr_os_dso DSO (Dynamic Loading) Portability Routines
* @{
*/
/**
@@ -483,7 +483,7 @@ APR_DECLARE(apr_status_t) apr_os_uuid_get(unsigned char *uuid_data);
/**
- * Get the name of the system default characer set.
+ * Get the name of the system default character set.
* @param pool the pool to allocate the name from, if needed
*/
APR_DECLARE(const char*) apr_os_default_encoding(apr_pool_t *pool);
@@ -493,7 +493,7 @@ APR_DECLARE(const char*) apr_os_default_encoding(apr_pool_t *pool);
* Get the name of the current locale character set.
* @param pool the pool to allocate the name from, if needed
* @remark Defers to apr_os_default_encoding if the current locale's
- * data can't be retreved on this system.
+ * data can't be retrieved on this system.
*/
APR_DECLARE(const char*) apr_os_locale_encoding(apr_pool_t *pool);