aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/routing.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-04-23 01:11:24 +0200
committerXavier Noria <fxn@hashref.com>2011-04-23 01:11:24 +0200
commitaf1b48926f49226c934995c322ee017239158cf3 (patch)
treea496e072226dc4c16f70b5d74cb7eb800391fa82 /railties/guides/source/routing.textile
parentf7538808d466b756df15ac3f27ca08370f7a189c (diff)
parentdf70b9dfb23aa05ed7ae7955ff0fb7eec68de9a3 (diff)
downloadrails-af1b48926f49226c934995c322ee017239158cf3.tar.gz
rails-af1b48926f49226c934995c322ee017239158cf3.tar.bz2
rails-af1b48926f49226c934995c322ee017239158cf3.zip
Merge branch 'master' of git://github.com/lifo/docrails
Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Diffstat (limited to 'railties/guides/source/routing.textile')
-rw-r--r--railties/guides/source/routing.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile
index 95b877aecf..43c08165dc 100644
--- a/railties/guides/source/routing.textile
+++ b/railties/guides/source/routing.textile
@@ -557,7 +557,7 @@ match '*a/foo/*b' => 'test#index'
would match +zoo/woo/foo/bar/baz+ with +params[:a]+ equals +"zoo/woo"+, and +params[:b]+ equals +"bar/baz"+.
-NOTE: Starting from Rails 3.1, wildcard route will always matching the optional format segment by default. For example if you have this route:
+NOTE: Starting from Rails 3.1, wildcard routes will always match the optional format segment by default. For example if you have this route:
<ruby>
map '*pages' => 'pages#show'