aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-06-22 19:36:01 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-06-22 19:36:01 +0300
commitb835c72bc951a9b94d1fcd290250032a6feb8d07 (patch)
tree387253375a55e37f87bcd1addcf53eeeab9651b9 /actionpack/lib/abstract_controller
parentebc4c607a7859c9c35246d7fe74a17208ef3a66e (diff)
downloadrails-b835c72bc951a9b94d1fcd290250032a6feb8d07.tar.gz
rails-b835c72bc951a9b94d1fcd290250032a6feb8d07.tar.bz2
rails-b835c72bc951a9b94d1fcd290250032a6feb8d07.zip
Remove mistaken end from controller_path doc [ci skip]
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r--actionpack/lib/abstract_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/base.rb b/actionpack/lib/abstract_controller/base.rb
index c95b9a4097..96d701dba5 100644
--- a/actionpack/lib/abstract_controller/base.rb
+++ b/actionpack/lib/abstract_controller/base.rb
@@ -88,7 +88,7 @@ module AbstractController
# Returns the full controller name, underscored, without the ending Controller.
#
# class MyApp::MyPostsController < AbstractController::Base
- # end
+ #
# end
#
# MyApp::MyPostsController.controller_path # => "my_app/my_posts"