You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fa...@locus.apache.org on 2000/04/18 02:47:15 UTC

cvs commit: apache-2.0/src/lib/apr APRDesign

fanf        00/04/17 17:47:15

  Modified:    src/lib/apr APRDesign
  Log:
  remove, spare, commas
  
  Revision  Changes    Path
  1.10      +5 -5      apache-2.0/src/lib/apr/APRDesign
  
  Index: APRDesign
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/APRDesign,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- APRDesign	2000/04/16 04:46:51	1.9
  +++ APRDesign	2000/04/18 00:47:14	1.10
  @@ -5,13 +5,13 @@
   was to combine all code in Apache to one common code base.  This is not the
   correct approach however, so the goal of APR has changed.  
   
  -There are places, where common code is not a good thing.  For example, how to
  -map requests to either threads or processes, should be platform specific. 
  -APR's place, is now to combine any code that can be safely combined, without
  +There are places where common code is not a good thing.  For example, how to
  +map requests to either threads or processes should be platform specific. 
  +APR's place is now to combine any code that can be safely combined without
   sacrificing performance.
   
  -To this end, we have created a set of operations that are required for cross
  -platfrom development.  There may be other types that are desired, and those
  +To this end we have created a set of operations that are required for cross
  +platfrom development.  There may be other types that are desired and those
   will be implemented in the future.  The first version of APR will focus on
   what Apache 2.0 needs.  Of course, anything that is submitted will be
   considered for inclusion.