diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-12-20 09:49:24 -0800 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-12-20 09:49:24 -0800 |
commit | 226b4ae79cdd348f203baddb3ec1f8842f920c4c (patch) | |
tree | b8033fcf5bb1701eb44e3e1f5e20a0ddf99eaa18 | |
parent | 3ef20aa62c11b2fbb709fcbf7aaa2fc982d27d5e (diff) | |
parent | 11b67b38bd0abe88d0678aef84ef00aa8adbc917 (diff) | |
download | rails-226b4ae79cdd348f203baddb3ec1f8842f920c4c.tar.gz rails-226b4ae79cdd348f203baddb3ec1f8842f920c4c.tar.bz2 rails-226b4ae79cdd348f203baddb3ec1f8842f920c4c.zip |
Merge pull request #4061 from indrekj/action-mailer-18n-subject-comments
fix default_i18n_subject comment in ActionMailer::Base
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 8f2c567e3e..71c156f1a2 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -668,7 +668,7 @@ module ActionMailer #:nodoc: end end - # Translates the +subject+ using Rails I18n class under <tt>[:actionmailer, mailer_scope, action_name]</tt> scope. + # Translates the +subject+ using Rails I18n class under <tt>[mailer_scope, action_name]</tt> scope. # If it does not find a translation for the +subject+ under the specified scope it will default to a # humanized version of the <tt>action_name</tt>. def default_i18n_subject #:nodoc: |