1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[guides] Fix method name inconsistency in a mailer example

[ci skip]
This commit is contained in:
Yuki Nishijima 2014-12-12 20:26:39 -08:00
parent aab670b430
commit 36e1e31887

View file

@ -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"
```