Skip to content

Commit

Permalink
Merge pull request #16767 from y-yagi/fix_message_delivery_doc
Browse files Browse the repository at this point in the history
[ci skip] Fix a typo in the doc of MessageDelivery
  • Loading branch information
senny committed Sep 2, 2014
2 parents 97e689a + 83bf95f commit 368001c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actionmailer/lib/action_mailer/message_delivery.rb
Expand Up @@ -38,9 +38,9 @@ def message
# that the message will be sent bypassing checking +perform_deliveries+ # that the message will be sent bypassing checking +perform_deliveries+
# and +raise_delivery_errors+, so use with caution. # and +raise_delivery_errors+, so use with caution.
# #
# Notifier.welcome(User.first).deliver_later # Notifier.welcome(User.first).deliver_later!
# Notifier.welcome(User.first).deliver_later(in: 1.hour) # 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!(at: 10.hours.from_now)
# #
# Options: # Options:
# #
Expand Down

0 comments on commit 368001c

Please sign in to comment.