You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by no...@apache.org on 2008/03/06 05:19:57 UTC

svn commit: r634154 - /httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml

Author: noodl
Date: Wed Mar  5 20:19:56 2008
New Revision: 634154

URL: http://svn.apache.org/viewvc?rev=634154&view=rev
Log:
Fix mixed up descriptions of regex tokens.

Submitted by: Shawn Ashlee (shawn.ashlee rackspace.com)

Modified:
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml?rev=634154&r1=634153&r2=634154&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml Wed Mar  5 20:19:56 2008
@@ -96,10 +96,9 @@
 <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>