You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by st...@apache.org on 2001/03/24 22:04:57 UTC

cvs commit: apr/include apr_tables.h

stoddard    01/03/24 13:04:57

  Modified:    include  apr_tables.h
  Log:
  Fix a couple of typos in the comments.
  
  Revision  Changes    Path
  1.16      +2 -2      apr/include/apr_tables.h
  
  Index: apr_tables.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_tables.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- apr_tables.h	2001/02/16 04:15:47	1.15
  +++ apr_tables.h	2001/03/24 21:04:57	1.16
  @@ -407,7 +407,7 @@
    *  int i;
    *
    *  for (i = 0; i < barr->nelts; ++i) {
  - *      if (flags & apr_OVERLAP_TABLES_MERGE) {
  + *      if (flags & APR_OVERLAP_TABLES_MERGE) {
    *          apr_table_mergen(a, belt[i].key, belt[i].val);
    *      }
    *      else {
  @@ -426,7 +426,7 @@
   #define APR_OVERLAP_TABLES_MERGE (1)
   /**
    * For each element in table b, either use setn or mergen to add the data
  - * to table a.  Wich method is used is determined by the flags passed in.
  + * 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 flags How to add the table to table a.  One of: