diff options
author | Aviv Ben-Yosef <aviv.by@gmail.com> | 2011-11-01 08:59:20 +0200 |
---|---|---|
committer | Aviv Ben-Yosef <aviv.by@gmail.com> | 2011-11-01 08:59:20 +0200 |
commit | 702aecb126712de9f996da74357cafe14f449d24 (patch) | |
tree | 7e7ce0c3d7d1abc51172c4e360bc4052ff55609b /actionpack/lib | |
parent | 5f4550889dcab7def4122d37a3379d57627f68e2 (diff) | |
download | rails-702aecb126712de9f996da74357cafe14f449d24.tar.gz rails-702aecb126712de9f996da74357cafe14f449d24.tar.bz2 rails-702aecb126712de9f996da74357cafe14f449d24.zip |
Fix typo in Dispatcher#controller documentation
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index e7bc431783..2bcde16110 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -37,7 +37,7 @@ module ActionDispatch # If this is a default_controller (i.e. a controller specified by the user) # we should raise an error in case it's not found, because it usually means - # an user error. However, if the controller was retrieved through a dynamic + # a user error. However, if the controller was retrieved through a dynamic # segment, as in :controller(/:action), we should simply return nil and # delegate the control back to Rack cascade. Besides, if this is not a default # controller, it means we should respect the @scope[:module] parameter. |