You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2009/09/25 22:09:17 UTC

svn commit: r818983 - in /apr/apr/branches/1.3.x/include: apr_env.h apr_file_io.h apr_portable.h apr_tables.h

Author: minfrin
Date: Fri Sep 25 20:09:17 2009
New Revision: 818983

URL: http://svn.apache.org/viewvc?rev=818983&view=rev
Log:
Fix a bunch of typos in the doxygen comments for public include files in APR 
Submitted by: Neil Conway <nrc cs.berkeley.edu>

Modified:
    apr/apr/branches/1.3.x/include/apr_env.h
    apr/apr/branches/1.3.x/include/apr_file_io.h
    apr/apr/branches/1.3.x/include/apr_portable.h
    apr/apr/branches/1.3.x/include/apr_tables.h

Modified: apr/apr/branches/1.3.x/include/apr_env.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/include/apr_env.h?rev=818983&r1=818982&r2=818983&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/include/apr_env.h (original)
+++ apr/apr/branches/1.3.x/include/apr_env.h Fri Sep 25 20:09:17 2009
@@ -28,7 +28,7 @@
 #endif /* __cplusplus */
 
 /**
- * @defgroup apr_env Functions for manupulating the environment
+ * @defgroup apr_env Functions for manipulating the environment
  * @ingroup APR 
  * @{
  */

Modified: apr/apr/branches/1.3.x/include/apr_file_io.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/include/apr_file_io.h?rev=818983&r1=818982&r2=818983&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/include/apr_file_io.h (original)
+++ apr/apr/branches/1.3.x/include/apr_file_io.h Fri Sep 25 20:09:17 2009
@@ -113,7 +113,7 @@
  * to decipher a sparse file, so it's critical that the sparse file
  * flag should only be used for files accessed only by APR or other
  * applications known to be able to decipher them.  APR does not
- * guarentee that it will compress the file into sparse segments
+ * guarantee that it will compress the file into sparse segments
  * if it was previously created and written without the sparse flag.
  * On platforms which do not understand, or on file systems which
  * cannot handle sparse files, the flag is ignored by apr_file_open().
@@ -732,7 +732,7 @@
 /**
  * Return the data associated with the current file.
  * @param data The user data associated with the file.  
- * @param key The key to use for retreiving data associated with this file.
+ * @param key The key to use for retrieving data associated with this file.
  * @param file The currently open file.
  */                     
 APR_DECLARE(apr_status_t) apr_file_data_get(void **data, const char *key, 
@@ -742,7 +742,7 @@
  * Set the data associated with the current file.
  * @param file The currently open file.
  * @param data The user data to associate with the file.  
- * @param key The key to use for assocaiteing data with the file.
+ * @param key The key to use for associating data with the file.
  * @param cleanup The cleanup routine to use when the file is destroyed.
  */                     
 APR_DECLARE(apr_status_t) apr_file_data_set(apr_file_t *file, void *data,
@@ -786,7 +786,7 @@
  * </PRE>
  * @param attr_mask Mask of valid bits in attributes.
  * @param pool the pool to use.
- * @remark This function should be used in preference to explict manipulation
+ * @remark This function should be used in preference to explicit manipulation
  *      of the file permissions, because the operations to provide these
  *      attributes are platform specific and may involve more than simply
  *      setting permission bits.
@@ -813,7 +813,7 @@
 /**
  * Create a new directory on the file system.
  * @param path the path for the directory to be created. (use / on all systems)
- * @param perm Permissions for the new direcoty.
+ * @param perm Permissions for the new directory.
  * @param pool the pool to use.
  */                        
 APR_DECLARE(apr_status_t) apr_dir_make(const char *path, apr_fileperms_t perm, 
@@ -823,7 +823,7 @@
  * 'mkdir -p'. Creates intermediate directories as required. No error
  * will be reported if PATH already exists.
  * @param path the path for the directory to be created. (use / on all systems)
- * @param perm Permissions for the new direcoty.
+ * @param perm Permissions for the new directory.
  * @param pool the pool to use.
  */
 APR_DECLARE(apr_status_t) apr_dir_make_recursive(const char *path,

Modified: apr/apr/branches/1.3.x/include/apr_portable.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/include/apr_portable.h?rev=818983&r1=818982&r2=818983&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/include/apr_portable.h (original)
+++ apr/apr/branches/1.3.x/include/apr_portable.h Fri Sep 25 20:09:17 2009
@@ -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 @@
 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 @@
 /**
  * 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 @@
 
 #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 @@
 
 
 /**
- * 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 @@
  * 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);
 

Modified: apr/apr/branches/1.3.x/include/apr_tables.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/include/apr_tables.h?rev=818983&r1=818982&r2=818983&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/include/apr_tables.h (original)
+++ apr/apr/branches/1.3.x/include/apr_tables.h Fri Sep 25 20:09:17 2009
@@ -261,7 +261,7 @@
  * Add a key/value pair to a table, if another element already exists with the
  * same key, this will over-write the old data.
  * @param t The table to add the data to.
- * @param key The key fo use
+ * @param key The key to use
  * @param val The value to add
  * @remark When adding data, this function makes a copy of both the key and the
  *         value.
@@ -384,7 +384,7 @@
 
 /** 
  * Iterate over a table running the provided function once for every
- * element in the table.  The @param vp varargs paramater must be a
+ * element in the table.  The @param vp varargs parameter must be a
  * list of zero or more (char *) keys followed by a NULL pointer.  If
  * zero keys are given, the @param comp function will be invoked for
  * every element in the table.  Otherwise, the function is invoked