From 36e1e3188789f23a378ce20be643d0c376d4914b Mon Sep 17 00:00:00 2001 From: Yuki Nishijima Date: Fri, 12 Dec 2014 20:26:39 -0800 Subject: [PATCH] [guides] Fix method name inconsistency in a mailer example [ci skip] --- guides/source/upgrading_ruby_on_rails.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ```