]> granicus.if.org Git - apache/commitdiff
Fix description of regex quantifiers.
authorRalf S. Engelschall <rse@apache.org>
Sat, 5 Feb 2000 11:44:06 +0000 (11:44 +0000)
committerRalf S. Engelschall <rse@apache.org>
Sat, 5 Feb 2000 11:44:06 +0000 (11:44 +0000)
Submitted by: Carl van Tast <CvT@netway.at>
Reviewed by: Ralf S. Engelschall
PR: 5614

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84578 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_rewrite.html

index acd5009cae5c2fd74d1e19a15b36baf12ffdfc82..cbd9e95945de902039d7e0dc00c5f2866883d167 100644 (file)
@@ -1364,7 +1364,7 @@ Some hints about the syntax of regular expressions:
 
 <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>