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

Merge pull request #22226 from boone/docs

ActiveJob docs text fix. [ci skip]
This commit is contained in:
Sean Griffin 2015-11-08 17:40:46 -08:00
commit 1f8cc53689
3 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ end
Enqueue a job like so:
```ruby
MyJob.perform_later record # Enqueue a job to be performed as soon the queueing system is free.
MyJob.perform_later record # Enqueue a job to be performed as soon as the queueing system is free.
```
```ruby

View file

@ -36,7 +36,7 @@ module ActiveJob #:nodoc:
# Records that are passed in are serialized/deserialized using Global
# ID. More information can be found in Arguments.
#
# To enqueue a job to be performed as soon the queueing system is free:
# To enqueue a job to be performed as soon as the queueing system is free:
#
# ProcessPhotoJob.perform_later(photo)
#

View file

@ -83,7 +83,7 @@ Note that you can define `perform` with as many arguments as you want.
Enqueue a job like so:
```ruby
# Enqueue a job to be performed as soon the queuing system is
# Enqueue a job to be performed as soon as the queuing system is
# free.
GuestsCleanupJob.perform_later guest
```