diff options
author | Hendy Tanata <htanata@gmail.com> | 2013-05-06 17:02:29 -0700 |
---|---|---|
committer | Hendy Tanata <htanata@gmail.com> | 2013-05-06 17:02:53 -0700 |
commit | b245287bc535933e7b0b095ca84d313dfd676eab (patch) | |
tree | e2473a10fbd6fd2ae0bcde856eb64ff9174819e4 /actionmailer/lib | |
parent | ebfe41ca2126132e780b47f73245d8f4e4a13187 (diff) | |
download | rails-b245287bc535933e7b0b095ca84d313dfd676eab.tar.gz rails-b245287bc535933e7b0b095ca84d313dfd676eab.tar.bz2 rails-b245287bc535933e7b0b095ca84d313dfd676eab.zip |
Fix grammar on AM.mailer_name documentation.
Diffstat (limited to 'actionmailer/lib')
-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 91b03f28de..fa015d9108 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -412,7 +412,7 @@ module ActionMailer Mail.register_interceptor(delivery_interceptor) end - # Returns the name of current mailer. This method also being used as a path for a view lookup. + # Returns the name of current mailer. This method is also being used as a path for a view lookup. # If this is an anonymous mailer, this method will return +anonymous+ instead. def mailer_name @mailer_name ||= anonymous? ? "anonymous" : name.underscore |