aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/mapper.rb
diff options
context:
space:
mode:
authorAnuj Dutta <anuj@andhapp.com>2011-05-22 11:27:02 +0100
committerAnuj Dutta <anuj@andhapp.com>2011-05-22 11:27:02 +0100
commit023ca4fd4879f62107bcfb633d51eb57e3b6cfd7 (patch)
tree49e340d1e1ed7b69f3315ad86c913bacb5d1d80f /actionpack/lib/action_dispatch/routing/mapper.rb
parent31f09a2b1821886164ffb629085d0f5b75bd0a40 (diff)
downloadrails-023ca4fd4879f62107bcfb633d51eb57e3b6cfd7.tar.gz
rails-023ca4fd4879f62107bcfb633d51eb57e3b6cfd7.tar.bz2
rails-023ca4fd4879f62107bcfb633d51eb57e3b6cfd7.zip
Fixed documentation for scope with path.
Diffstat (limited to 'actionpack/lib/action_dispatch/routing/mapper.rb')
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index 8af4971e69..860f7eced2 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -578,8 +578,8 @@ module ActionDispatch
# end
#
# This generates helpers such as +account_projects_path+, just like +resources+ does.
- # The difference here being that the routes generated are like /rails/projects/2,
- # rather than /accounts/rails/projects/2.
+ # The difference here being that the routes generated are like /:account_id/projects,
+ # rather than /accounts/:account_id/projects.
#
# === Options
#