diff options
author | Zachary Scott <e@zzak.io> | 2014-08-20 12:40:46 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-08-20 12:40:46 -0700 |
commit | 537b85959015f76d008dd09c853fda756be5c809 (patch) | |
tree | 80e721ccf7b2fe607b1fbe3156dc9c88c0dfb8db | |
parent | 9f575ccf80bc76ef44fadebb66c080cab7647a87 (diff) | |
parent | d694ea259c755924ba54e8e3783630ae3d737543 (diff) | |
download | rails-537b85959015f76d008dd09c853fda756be5c809.tar.gz rails-537b85959015f76d008dd09c853fda756be5c809.tar.bz2 rails-537b85959015f76d008dd09c853fda756be5c809.zip |
Merge pull request #16594 from loganhasson/master
[ci skip] Fix Active Job grammar in api docs
-rw-r--r-- | activejob/README.md | 2 | ||||
-rw-r--r-- | activejob/lib/active_job/callbacks.rb | 2 |
2 files changed, 2 insertions, 2 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 diff --git a/activejob/lib/active_job/callbacks.rb b/activejob/lib/active_job/callbacks.rb index af92031bc9..8901fa77f2 100644 --- a/activejob/lib/active_job/callbacks.rb +++ b/activejob/lib/active_job/callbacks.rb @@ -3,7 +3,7 @@ require 'active_support/callbacks' module ActiveJob # = Active Job Callbacks # - # Active Job provides hooks during the lifecycle of a job. Callbacks allows you to trigger + # Active Job provides hooks during the lifecycle of a job. Callbacks allow you to trigger # logic during the lifecycle of a job. Available callbacks: # # * <tt>before_enqueue</tt> |