aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2014-12-18 09:08:02 -0500
committerEileen M. Uchitelle <eileencodes@gmail.com>2014-12-18 09:08:02 -0500
commit6d6f70301209d2942288f60abb7d203e89e8d9b6 (patch)
tree6e909cbafafaedbf4761f767ab1bcecb8e798a0d
parent59cbee059c0cbe48bdc046244b6f933ce0e52a79 (diff)
parent2ce3e9e8725f0593bf22b4990bec99a6b46d69b9 (diff)
downloadrails-6d6f70301209d2942288f60abb7d203e89e8d9b6.tar.gz
rails-6d6f70301209d2942288f60abb7d203e89e8d9b6.tar.bz2
rails-6d6f70301209d2942288f60abb7d203e89e8d9b6.zip
Merge pull request #18087 from georgemillo/patch-2
Spelling fix [ci skip]
-rw-r--r--guides/source/upgrading_ruby_on_rails.md4
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: