diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-01 08:18:54 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-01 08:18:54 -0700 |
commit | f8483dd48bc538cdab03ac5b7a393cd8571dc0f9 (patch) | |
tree | 677dbe7b25707b4bb8ecbdfdc79720832453f77f | |
parent | fe64edec3df2010d185db4178d542de82b939cba (diff) | |
parent | 56d386254123df3083437ecd619b4a7242cf0788 (diff) | |
download | rails-f8483dd48bc538cdab03ac5b7a393cd8571dc0f9.tar.gz rails-f8483dd48bc538cdab03ac5b7a393cd8571dc0f9.tar.bz2 rails-f8483dd48bc538cdab03ac5b7a393cd8571dc0f9.zip |
Merge pull request #12735 from linstula/fix-typo-in-responder-comment
Fix typo in method description in Responder class
-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) |