diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 2d939a5e09906..e46c6c1aba551 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fix documentation typo in routes. [norbert] + * Sweep flash when filter chain is halted. [Caio Chassot ] * Fixed that content_tag with a block will just return the result instead of concate it if not used in a ERb view #7857, #7432 [michael.niessner] diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb index 5786e669424c2..bad31f6827458 100644 --- a/actionpack/lib/action_controller/routing.rb +++ b/actionpack/lib/action_controller/routing.rb @@ -205,7 +205,7 @@ module ActionController # # You can reload routes if you feel you must: # - # Action::Controller::Routes.reload + # ActionController::Routing::Routes.reload # # This will clear all named routes and reload routes.rb #