summaryrefslogtreecommitdiffstats
path: root/user_guide/general
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-01-17 16:42:56 +0100
committerDerek Allard <derek.allard@ellislab.com>2010-01-17 16:42:56 +0100
commitb5f211b14198afce3a4a60000f9ab3b8f14d0d6d (patch)
treed6cb375cd967c544b034051d31e002aa652e5b5b /user_guide/general
parent028cbb5de098b74780d57c24d574e531fb23f33c (diff)
doc updates, corrections and clarifications.
Diffstat (limited to 'user_guide/general')
-rw-r--r--user_guide/general/routing.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/general/routing.html b/user_guide/general/routing.html
index 01a8aef8e..11ff4a2f6 100644
--- a/user_guide/general/routing.html
+++ b/user_guide/general/routing.html
@@ -117,7 +117,7 @@ Higher routes will always take precedence over lower ones.</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>
<code>$route['product/(:num)'] = "catalog/product_lookup_by_id/$1";</code>
-<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_by_id" method passing in the match as a variable to the function.</p>
+<p>A URL with "product" as the first segment, and a number in the second will be remapped to the "catalog" class and the "product_lookup_by_id" method passing in the match as a variable to the function.</p>
<p class="important"><strong>Important:</strong> Do not use leading/trailing slashes.</p>