summaryrefslogtreecommitdiffstats
path: root/user_guide/general
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2007-12-26 15:47:10 +0100
committerDerek Allard <derek.allard@ellislab.com>2007-12-26 15:47:10 +0100
commit7184f342863b7056437ce441a4fed135128cd8f6 (patch)
treecda3d01b8478b8d41e5670dd871d92977843df34 /user_guide/general
parent4a969bb208c1fc955d86b0b2c73b1af2689323fe (diff)
example fix
Diffstat (limited to 'user_guide/general')
-rw-r--r--user_guide/general/routing.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide/general/routing.html b/user_guide/general/routing.html
index 15ba73cee..f7f93c838 100644
--- a/user_guide/general/routing.html
+++ b/user_guide/general/routing.html
@@ -114,14 +114,14 @@ Higher routes will always take precedence over lower ones.</p>
<p>Here are a few routing examples:</p>
<code>$route['journals'] = "blogs";</code>
-<p>Any URL containing the word "journals" in the first segment will be remapped to the "blogs" class.</p>
+<p>A URL containing the word "journals" in the first segment will be remapped to the "blogs" class.</p>
<code>$route['blog/joe'] = "blogs/users/34";</code>
-<p>Any URL containing the segments blog/joe will be remapped to the "blogs" class and the "users" method. The ID will be set to "34".</p>
+<p>A URL containing the segments blog/joe will be remapped to the "blogs" class and the "users" method. The ID will be set to "34".</p>
<code>$route['product/:any'] = "catalog/product_lookup";</code>
-<p>Any URL with "product" as the first segment, and anything in the second will be remapped to the "catalog" class and the "product_lookup" method.</p>
+<p>A URL with "product" as the first segment, and anything in the second will be remapped to the "catalog" class and the "product_lookup" method.</p>
<p class="important"><strong>Important:</strong> Do not use leading/trailing slashes.</p>