aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-09-18 03:40:51 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-09-18 03:40:51 +0530
commit8841f45129e586f580e0f3e5105de72b5eb575fe (patch)
tree9f64efc98d3b88ba8918e83d03d789737f21f3f7 /actionmailer/CHANGELOG.md
parent57a893b54a7364ed919c7e49e81ab245e25b5e16 (diff)
downloadrails-8841f45129e586f580e0f3e5105de72b5eb575fe.tar.gz
rails-8841f45129e586f580e0f3e5105de72b5eb575fe.tar.bz2
rails-8841f45129e586f580e0f3e5105de72b5eb575fe.zip
[ci skip] ActionView and ActionMailer CHANGELOG docs fixes
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 1ff4db41a3..e5e3a0164d 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,13 +1,13 @@
-* Added #deliver_later, #deliver_now and deprecate #deliver in favour of
- #deliver_now. #deliver_later will enqueue a job to render and deliver
+* Added `#deliver_later`, `#deliver_now` and deprecate `#deliver` in favour of
+ `#deliver_now`. `#deliver_later` will enqueue a job to render and deliver
the mail instead of delivering it right at that moment. The job is enqueued
using the new Active Job framework in Rails, and will use whatever queue is
configured for Rails.
*DHH/Abdelkader Boudih/Cristian Bica*
-* Make ActionMailer::Previews methods class methods. Previously they were
- instance methods and ActionMailer tries to render a message when they
+* Make `ActionMailer::Previews` methods class methods. Previously they were
+ instance methods and `ActionMailer` tries to render a message when they
are called.
*Cristian Bica*