aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/README.md
diff options
context:
space:
mode:
authorLogan Hasson <logan.hasson@gmail.com>2014-08-20 15:36:58 -0400
committerLogan Hasson <logan.hasson@gmail.com>2014-08-20 15:36:58 -0400
commitd694ea259c755924ba54e8e3783630ae3d737543 (patch)
tree2d6c9d776de877e49f2985dcdda4f279a3732b49 /activejob/README.md
parent2b7d67d49df8b88ef4815199f2ce5c11f09fe06f (diff)
downloadrails-d694ea259c755924ba54e8e3783630ae3d737543.tar.gz
rails-d694ea259c755924ba54e8e3783630ae3d737543.tar.bz2
rails-d694ea259c755924ba54e8e3783630ae3d737543.zip
[ci skip] Fix Active Job grammar in api docs
Diffstat (limited to 'activejob/README.md')
-rw-r--r--activejob/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/README.md b/activejob/README.md
index e48070bcfc..1f300fcf62 100644
--- a/activejob/README.md
+++ b/activejob/README.md
@@ -2,7 +2,7 @@
Active Job is a framework for declaring jobs and making them run on a variety
of queueing backends. These jobs can be everything from regularly scheduled
-clean-ups, billing charges, or mailings. Anything that can be chopped up into
+clean-ups, to billing charges, to mailings. Anything that can be chopped up into
small units of work and run in parallel, really.
It also serves as the backend for ActionMailer's #deliver_later functionality