Fixed wording.

This commit is contained in:
Mike Boone 2015-11-08 20:38:13 -05:00
parent 280654ef88
commit ece366be07
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
```