diff options
author | George Millo <georgejulianmillo@gmail.com> | 2014-12-18 13:32:06 +0000 |
---|---|---|
committer | George Millo <georgejulianmillo@gmail.com> | 2014-12-18 13:32:06 +0000 |
commit | 2ce3e9e8725f0593bf22b4990bec99a6b46d69b9 (patch) | |
tree | 6e909cbafafaedbf4761f767ab1bcecb8e798a0d | |
parent | 59cbee059c0cbe48bdc046244b6f933ce0e52a79 (diff) | |
download | rails-2ce3e9e8725f0593bf22b4990bec99a6b46d69b9.tar.gz rails-2ce3e9e8725f0593bf22b4990bec99a6b46d69b9.tar.bz2 rails-2ce3e9e8725f0593bf22b4990bec99a6b46d69b9.zip |
Spelling fix [ci skip]
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 7ef51b6dc0..51c144993c 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -235,8 +235,8 @@ mail = Notifier.notify(user, ...) # Notifier#notify is not yet called at this po mail = mail.deliver_now # Prints "Called" ``` -This should not result in any noticible differnces for most applications. -However, if you need some non-mailer methods to be exectuted synchronously, and +This should not result in any noticeable differences for most applications. +However, if you need some non-mailer methods to be executed synchronously, and you were previously relying on the synchronous proxying behavior, you should define them as class methods on the mailer class directly: |