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

Merge pull request #16767 from y-yagi/fix_message_delivery_doc

[ci skip] Fix a typo in the doc of MessageDelivery
This commit is contained in:
Yves Senn 2014-09-02 12:31:51 +02:00
commit 368001c021

View file

@ -38,9 +38,9 @@ module ActionMailer
# that the message will be sent bypassing checking +perform_deliveries+
# and +raise_delivery_errors+, so use with caution.
#
# Notifier.welcome(User.first).deliver_later
# Notifier.welcome(User.first).deliver_later(in: 1.hour)
# Notifier.welcome(User.first).deliver_later(at: 10.hours.from_now)
# Notifier.welcome(User.first).deliver_later!
# Notifier.welcome(User.first).deliver_later!(in: 1.hour)
# Notifier.welcome(User.first).deliver_later!(at: 10.hours.from_now)
#
# Options:
#