]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backport r634154 (Fix mixed up descriptions of regex tokens)
authorVincent Bray <noodl@apache.org>
Thu, 6 Mar 2008 04:25:36 +0000 (04:25 +0000)
committerVincent Bray <noodl@apache.org>
Thu, 6 Mar 2008 04:25:36 +0000 (04:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@634157 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/rewrite_intro.xml

index ed8faef34e3a037d9270add53c38e86fe1681225..0ba25cfeef045d31e3dc2dab7a908d06c9097085 100644 (file)
@@ -96,10 +96,9 @@ times</td><td><code>a+</code> matches <code>a</code>, <code>aa</code>,
 <tr><td><code>*</code></td><td>Repeats the previous match zero or more
 times.</td><td><code>a*</code> matches all the same things
 <code>a+</code> matches, but will also match an empty string.</td></tr>
-<tr><td><code>?</code></td><td>Makes the match optional.</td><td></td></tr>
-<tr><td><code>.</code></td><td>Matches any
-character</td><td><code>colou?r</code> will match <code>color</code> and
-<code>colour</code>.</td></tr>
+<tr><td><code>?</code></td><td>Makes the match optional.</td><td>
+<code>colou?r</code> will match <code>color</code> and <code>colour</code>.</td>
+</tr>
 <tr><td><code>^</code></td><td>Called an anchor, matches the beginning
 of the string</td><td><code>^a</code> matches a string that begins with
 <code>a</code></td></tr>