aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/abstract_controller/base.rb')
-rw-r--r--actionpack/lib/abstract_controller/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/abstract_controller/base.rb b/actionpack/lib/abstract_controller/base.rb
index 2c8a67db09..5bb34daf81 100644
--- a/actionpack/lib/abstract_controller/base.rb
+++ b/actionpack/lib/abstract_controller/base.rb
@@ -100,10 +100,10 @@ module AbstractController
# Returns the full controller name, underscored, without the ending Controller.
#
- # class MyApp
- # MyPostsController < AbstractController::Base
+ # class MyApp::MyPostsController < AbstractController::Base
# end
# end
+ #
# MyApp::MyPostsController.controller_path # => "my_app/my_posts"
#
# ==== Returns