aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/base.rb
diff options
context:
space:
mode:
authorAndrew France <andrew@avito.co.uk>2011-10-20 12:32:11 +0200
committerAndrew France <andrew@avito.co.uk>2011-10-20 12:32:11 +0200
commit66880cfe416b75f472762f2c6b485bad9759c751 (patch)
tree1faa6782fbe1d0078e99e10b5e5cde4a7f34fd12 /actionmailer/lib/action_mailer/base.rb
parentee1223c1ee90899819a88c39db3e77b3692c68ee (diff)
downloadrails-66880cfe416b75f472762f2c6b485bad9759c751.tar.gz
rails-66880cfe416b75f472762f2c6b485bad9759c751.tar.bz2
rails-66880cfe416b75f472762f2c6b485bad9759c751.zip
Correct ActionMailer subject i18n lookup scope.
The :actionmailer i18n scope part is not used and according to https://github.com/rails/rails/pull/2542 the implementation is correct.
Diffstat (limited to 'actionmailer/lib/action_mailer/base.rb')
-rw-r--r--actionmailer/lib/action_mailer/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index ac49702ced..8f2c567e3e 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -524,7 +524,7 @@ module ActionMailer #:nodoc:
#
# * <tt>:subject</tt> - The subject of the message, if this is omitted, Action Mailer will
# ask the Rails I18n class for a translated <tt>:subject</tt> in the scope of
- # <tt>[:actionmailer, mailer_scope, action_name]</tt> or if this is missing, will translate the
+ # <tt>[mailer_scope, action_name]</tt> or if this is missing, will translate the
# humanized version of the <tt>action_name</tt>
# * <tt>:to</tt> - Who the message is destined for, can be a string of addresses, or an array
# of addresses.