diff options
author | JudeArasu <judearasu@gmail.com> | 2011-06-19 12:14:00 +0530 |
---|---|---|
committer | JudeArasu <judearasu@gmail.com> | 2011-06-19 12:14:00 +0530 |
commit | d0c4fd75f2b4dee42552ef3148422561acb7fca1 (patch) | |
tree | 073f44c286755499aa01162213d3910c6275cf5c /actionmailer | |
parent | 8d64aafa98c0806f34be02c0b38bb4bd9fca2ed9 (diff) | |
download | rails-d0c4fd75f2b4dee42552ef3148422561acb7fca1.tar.gz rails-d0c4fd75f2b4dee42552ef3148422561acb7fca1.tar.bz2 rails-d0c4fd75f2b4dee42552ef3148422561acb7fca1.zip |
typo changes
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 085afb57c1..e53f548523 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -130,9 +130,9 @@ module ActionMailer #:nodoc: # # config.action_mailer.default_url_options = { :host => "example.com" } # - # If you do decide to set a default <tt>:host</tt> for your mailers you want to use the + # If you decide to set a default <tt>:host</tt> for your mailers, then you want to use the # <tt>:only_path => false</tt> option when using <tt>url_for</tt>. This will ensure that absolute URLs are - # generated because the <tt>url_for</tt> view helper will, by default, generate relative URLs when a + # generated because the <tt>url_for</tt> view helper by default will generate relative URLs when a # <tt>:host</tt> option isn't explicitly provided. # # = Sending mail @@ -732,3 +732,4 @@ module ActionMailer #:nodoc: ActiveSupport.run_load_hooks(:action_mailer, self) end end + |