aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_mailer_basics.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-02-13 20:36:16 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-02-13 20:44:44 +0900
commit1335959135b908c284e4d7179e9d8c1261f0ee95 (patch)
treecffbcba4cec86968869573e7bb1ee8a63f7492e8 /guides/source/action_mailer_basics.md
parente183227e5c7665b6505dd319724f1a540946b7ce (diff)
downloadrails-1335959135b908c284e4d7179e9d8c1261f0ee95.tar.gz
rails-1335959135b908c284e4d7179e9d8c1261f0ee95.tar.bz2
rails-1335959135b908c284e4d7179e9d8c1261f0ee95.zip
Fix grammar `a` to `an` [ci skip]
Diffstat (limited to 'guides/source/action_mailer_basics.md')
-rw-r--r--guides/source/action_mailer_basics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md
index cd2c13e8c1..ec175cbdad 100644
--- a/guides/source/action_mailer_basics.md
+++ b/guides/source/action_mailer_basics.md
@@ -222,7 +222,7 @@ class SendWeeklySummary
end
```
-The method `welcome_email` returns a `ActionMailer::MessageDelivery` object which
+The method `welcome_email` returns an `ActionMailer::MessageDelivery` object which
can then just be told `deliver_now` or `deliver_later` to send itself out. The
`ActionMailer::MessageDelivery` object is just a wrapper around a `Mail::Message`. If
you want to inspect, alter or do anything else with the `Mail::Message` object you can