You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 2000/02/05 12:44:08 UTC

cvs commit: apache-1.3/htdocs/manual/mod mod_rewrite.html

rse         00/02/05 03:44:07

  Modified:    htdocs/manual/mod mod_rewrite.html
  Log:
  Fix description of regex quantifiers.
  
  Submitted by: Carl van Tast <Cv...@netway.at>
  Reviewed by: Ralf S. Engelschall
  PR: 5614
  
  Revision  Changes    Path
  1.48      +1 -1      apache-1.3/htdocs/manual/mod/mod_rewrite.html
  
  Index: mod_rewrite.html
  ===================================================================
  RCS file: /home/cvs/apache-1.3/htdocs/manual/mod/mod_rewrite.html,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- mod_rewrite.html	2000/01/08 14:50:12	1.47
  +++ mod_rewrite.html	2000/02/05 11:44:06	1.48
  @@ -1364,7 +1364,7 @@
   
   <STRONG>Quantifiers:</STRONG>
     <STRONG><CODE>?</CODE></STRONG>           0 or 1 of the preceding text
  -  <STRONG><CODE>*</CODE></STRONG>           0 or N of the preceding text (N &gt; 1)
  +  <STRONG><CODE>*</CODE></STRONG>           0 or N of the preceding text (N &gt; 0)
     <STRONG><CODE>+</CODE></STRONG>           1 or N of the preceding text (N &gt; 1)
   
   <STRONG>Grouping:</STRONG>