aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-01-16 04:18:49 +0000
committerPratik Naik <pratiknaik@gmail.com>2009-01-16 04:19:44 +0000
commit7d2e3ef315489d06e5074c2a7b9b6425aa3e74ce (patch)
tree1e975aac61cdb0c790dcb77749ecc9f14af1e74e /railties/doc/guides
parent1da087ba5314c5d90c0a69c9e80af56683605c17 (diff)
downloadrails-7d2e3ef315489d06e5074c2a7b9b6425aa3e74ce.tar.gz
rails-7d2e3ef315489d06e5074c2a7b9b6425aa3e74ce.tar.bz2
rails-7d2e3ef315489d06e5074c2a7b9b6425aa3e74ce.zip
Remove version info
Diffstat (limited to 'railties/doc/guides')
-rw-r--r--railties/doc/guides/source/routing_outside_in.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/routing_outside_in.txt b/railties/doc/guides/source/routing_outside_in.txt
index b8ea7056e6..a182948bb9 100644
--- a/railties/doc/guides/source/routing_outside_in.txt
+++ b/railties/doc/guides/source/routing_outside_in.txt
@@ -797,7 +797,7 @@ Route globbing is a way to specify that a particular parameter should be matched
map.connect 'photo/*other', :controller => 'photos', :action => 'unknown',
-------------------------------------------------------
-This route would match +photo/12+ or +/photo/long/path/to/12+ equally well, creating an array of path segments as the value of +params[:other]+. Originally this parameter had to be at the end of the route definition, however as of Rails 2.0 this is no longer the case.
+This route would match +photo/12+ or +/photo/long/path/to/12+ equally well, creating an array of path segments as the value of +params[:other]+.
=== Route Options