diff options
author | Lin Reid <linreid@gmail.com> | 2013-11-01 10:58:25 -0400 |
---|---|---|
committer | Lin Reid <linreid@gmail.com> | 2013-11-01 10:58:25 -0400 |
commit | 56d386254123df3083437ecd619b4a7242cf0788 (patch) | |
tree | c061eb6d22272ec863c17329bef00ab694dfa19a /actionpack/lib | |
parent | 09ce1df7aa2845b86a98a392cb6691566f533d9b (diff) | |
download | rails-56d386254123df3083437ecd619b4a7242cf0788.tar.gz rails-56d386254123df3083437ecd619b4a7242cf0788.tar.bz2 rails-56d386254123df3083437ecd619b4a7242cf0788.zip |
Fix typo in method description in Responder class
Fixes a typo in the description for the call class method in Responder.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/responder.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/responder.rb b/actionpack/lib/action_controller/metal/responder.rb index 66ff34a794..b4ba169e8f 100644 --- a/actionpack/lib/action_controller/metal/responder.rb +++ b/actionpack/lib/action_controller/metal/responder.rb @@ -144,7 +144,7 @@ module ActionController #:nodoc: undef_method(:to_json) if method_defined?(:to_json) undef_method(:to_yaml) if method_defined?(:to_yaml) - # Initializes a new responder an invoke the proper format. If the format is + # Initializes a new responder and invokes the proper format. If the format is # not defined, call to_format. # def self.call(*args) |