diff options
author | Rajeev N Bharshetty <rajeevrvis@gmail.com> | 2013-08-02 18:17:09 +0530 |
---|---|---|
committer | Rajeev N Bharshetty <rajeevrvis@gmail.com> | 2013-08-02 18:17:09 +0530 |
commit | 65263c1b3cc8a903616fc950cdd946be167a1f59 (patch) | |
tree | e68f91c15b5e4cd02bfb24952356d668becd74b3 /actionpack/lib/action_controller | |
parent | e73f07568998e220d4e5501456b9f4dc6ac417f1 (diff) | |
download | rails-65263c1b3cc8a903616fc950cdd946be167a1f59.tar.gz rails-65263c1b3cc8a903616fc950cdd946be167a1f59.tar.bz2 rails-65263c1b3cc8a903616fc950cdd946be167a1f59.zip |
fix a gramatical mistake
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 168ae0a529..1faecc850b 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -3,7 +3,7 @@ require "action_controller/metal/params_wrapper" module ActionController # Action Controllers are the core of a web request in \Rails. They are made up of one or more actions that are executed - # on request and then either render a template or redirect to another action. An action is defined as a public method + # on request and then either it renders a template or redirects to another action. An action is defined as a public method # on the controller, which will automatically be made accessible to the web-server through \Rails Routes. # # By default, only the ApplicationController in a \Rails application inherits from <tt>ActionController::Base</tt>. All other |