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

[ci skip] Fix Active Job grammar in api docs

This commit is contained in:
Logan Hasson 2014-08-20 15:36:58 -04:00
parent 2b7d67d49d
commit d694ea259c
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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>