diff options
author | Yuki Nishijima <mail@yukinishijima.net> | 2014-12-12 20:26:39 -0800 |
---|---|---|
committer | Yuki Nishijima <mail@yukinishijima.net> | 2014-12-12 20:26:39 -0800 |
commit | 36e1e3188789f23a378ce20be643d0c376d4914b (patch) | |
tree | 7e9e8a277d1ac4737573ab3cc6ade2bb7e96bc60 /guides/source | |
parent | aab670b43084a75f3e48402a1272318efaa2d5a1 (diff) | |
download | rails-36e1e3188789f23a378ce20be643d0c376d4914b.tar.gz rails-36e1e3188789f23a378ce20be643d0c376d4914b.tar.bz2 rails-36e1e3188789f23a378ce20be643d0c376d4914b.zip |
[guides] Fix method name inconsistency in a mailer example
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 51f79f44f5..7ef51b6dc0 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -231,7 +231,7 @@ class Notifier < ActionMailer::Base end end -mail = Notifier.notify(user, ...) # Notifier#welcome is not yet called at this point +mail = Notifier.notify(user, ...) # Notifier#notify is not yet called at this point mail = mail.deliver_now # Prints "Called" ``` |