aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-11-01 08:18:54 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-11-01 08:18:54 -0700
commitf8483dd48bc538cdab03ac5b7a393cd8571dc0f9 (patch)
tree677dbe7b25707b4bb8ecbdfdc79720832453f77f
parentfe64edec3df2010d185db4178d542de82b939cba (diff)
parent56d386254123df3083437ecd619b4a7242cf0788 (diff)
downloadrails-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.rb2
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)