diff options
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/abstract_controller/base.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/abstract_controller/base.rb b/actionpack/lib/abstract_controller/base.rb index c030930617..aa58089fd4 100644 --- a/actionpack/lib/abstract_controller/base.rb +++ b/actionpack/lib/abstract_controller/base.rb @@ -15,15 +15,15 @@ module AbstractController # different things depending on the context. class Base ## - # Returns the body of the HTTP response sent by the controller + # Returns the body of the HTTP response sent by the controller. attr_internal :response_body ## - # Returns the name of the action this controller is processing + # Returns the name of the action this controller is processing. attr_internal :action_name ## - # Returns the formats processed by the controller + # Returns the formats processed by the controller. attr_internal :formats include ActiveSupport::Configurable |