You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/08/15 23:02:54 UTC

cvs commit: apr/memory/unix apr_sms_threads.c apr_sms_tracking.c

trawick     01/08/15 14:02:54

  Modified:    file_io/win32 filestat.c
               include  apr_file_info.h apr_network_io.h apr_pools.h
                        apr_sms.h apr_tables.h
               memory/unix apr_sms_threads.c apr_sms_tracking.c
  Log:
  fix some homophonic issues in comments, as well as some
  mispelings found near "its" or "it's"
  
  (helping our 4th grader with homework, couldn't help but
  grep)
  
  Revision  Changes    Path
  1.55      +1 -1      apr/file_io/win32/filestat.c
  
  Index: filestat.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/win32/filestat.c,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- filestat.c	2001/07/26 03:33:17	1.54
  +++ filestat.c	2001/08/15 21:02:53	1.55
  @@ -282,7 +282,7 @@
    * dword discrepancy in offset of the High/Low size structure members.
    *
    * The generic fillin returns 1 if the caller should further inquire
  - * if this is a CHR filetype.  If it's resonably certain it can't be,
  + * if this is a CHR filetype.  If it's reasonably certain it can't be,
    * then the function returns 0.
    */
   int fillin_fileinfo(apr_finfo_t *finfo, 
  
  
  
  1.22      +1 -1      apr/include/apr_file_info.h
  
  Index: apr_file_info.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_file_info.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- apr_file_info.h	2001/08/11 17:57:11	1.21
  +++ apr_file_info.h	2001/08/15 21:02:53	1.22
  @@ -314,7 +314,7 @@
    * Extract the rootpath from the given filepath
    * @ingroup apr_filepath
    * @param rootpath the root file path returned with APR_SUCCESS or APR_EINCOMPLETE
  - * @param filepath the pathname to parse for it's root component
  + * @param filepath the pathname to parse for its root component
    * @param flags the desired rules to apply, from
    * <PRE>
    *      APR_FILEPATH_NATIVE    Use native path seperators (e.g. '\' on Win32)
  
  
  
  1.111     +1 -1      apr/include/apr_network_io.h
  
  Index: apr_network_io.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_network_io.h,v
  retrieving revision 1.110
  retrieving revision 1.111
  diff -u -r1.110 -r1.111
  --- apr_network_io.h	2001/08/12 05:50:46	1.110
  +++ apr_network_io.h	2001/08/15 21:02:53	1.111
  @@ -764,7 +764,7 @@
   
   /**
    * Given an apr_sockaddr_t and a service name, set the port for the service
  - * @param sockaddr The apr_sockaddr_t that will have it's port set
  + * @param sockaddr The apr_sockaddr_t that will have its port set
    * @param servname The name of the service you wish to use
    */
   APR_DECLARE(apr_status_t) apr_getservbyname(apr_sockaddr_t *sockaddr, 
  
  
  
  1.59      +1 -1      apr/include/apr_pools.h
  
  Index: apr_pools.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_pools.h,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- apr_pools.h	2001/08/13 04:20:19	1.58
  +++ apr_pools.h	2001/08/15 21:02:53	1.59
  @@ -232,7 +232,7 @@
    * @param newcont The pool we have just created.
    * @param cont The parent pool.  If this is NULL, the new pool is a root
    *        pool.  If it is non-NULL, the new pool will inherit all
  - *        of it's parent pool's attributes, except the apr_pool_t will 
  + *        of its parent pool's attributes, except the apr_pool_t will 
    *        be a sub-pool.
    */
   APR_DECLARE(apr_status_t) apr_pool_create(apr_pool_t **newcont,
  
  
  
  1.42      +1 -1      apr/include/apr_sms.h
  
  Index: apr_sms.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_sms.h,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- apr_sms.h	2001/08/12 05:15:54	1.41
  +++ apr_sms.h	2001/08/15 21:02:53	1.42
  @@ -136,7 +136,7 @@
   
   /* APR_DEBUG_SHOW_STRUCTURE
    * This turns on a print of the ancestory of the SMS when
  - * creating/destroying an SMS so it's place in the world can be seen.
  + * creating/destroying an SMS so its place in the world can be seen.
    */
   #define APR_DEBUG_SHOW_STRUCTURE      0
   
  
  
  
  1.22      +1 -1      apr/include/apr_tables.h
  
  Index: apr_tables.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_tables.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- apr_tables.h	2001/07/07 18:43:31	1.21
  +++ apr_tables.h	2001/08/15 21:02:53	1.22
  @@ -423,7 +423,7 @@
    * For each element in table b, either use setn or mergen to add the data
    * to table a.  Which method is used is determined by the flags passed in.
    * @param a The table to add the data to.
  - * @param b The table to iterate over, adding it's data to table a
  + * @param b The table to iterate over, adding its data to table a
    * @param flags How to add the table to table a.  One of:
    *          APR_OVERLAP_TABLES_SET        Use apr_table_setn
    *          APR_OVERLAP_TABLES_MERGE      Use apr_table_mergen
  
  
  
  1.4       +1 -1      apr/memory/unix/apr_sms_threads.c
  
  Index: apr_sms_threads.c
  ===================================================================
  RCS file: /home/cvs/apr/memory/unix/apr_sms_threads.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- apr_sms_threads.c	2001/07/27 16:54:44	1.3
  +++ apr_sms_threads.c	2001/08/15 21:02:54	1.4
  @@ -492,7 +492,7 @@
       /* This function WILL always be called.  However, be aware that the
        * main sms destroy function knows that it's not wise to try and destroy
        * the same piece of memory twice, so the destroy function in a child won't
  -     * neccesarily be called.  To guarantee we destroy the lock it's therefore
  +     * necessarily be called.  To guarantee we destroy the lock it's therefore
        * destroyed here.
        */
           
  
  
  
  1.22      +1 -1      apr/memory/unix/apr_sms_tracking.c
  
  Index: apr_sms_tracking.c
  ===================================================================
  RCS file: /home/cvs/apr/memory/unix/apr_sms_tracking.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- apr_sms_tracking.c	2001/07/08 18:39:15	1.21
  +++ apr_sms_tracking.c	2001/08/15 21:02:54	1.22
  @@ -210,7 +210,7 @@
       /* This function WILL alwways be called.  However, be aware that the
        * main sms destroy function knows that it's not wise to try and destroy
        * the same piece of memory twice, so the destroy function in a child won't
  -     * neccesarily be called.  To guarantee we destroy the lock it's therefore
  +     * necessarily be called.  To guarantee we destroy the lock it's therefore
        * destroyed here.
        */