aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-11-08 17:40:46 -0800
committerSean Griffin <sean@seantheprogrammer.com>2015-11-08 17:40:46 -0800
commit1f8cc53689ead6befbbb6d8d7436596270738ff3 (patch)
tree5b7e66b1c3559fbc6cbaa06a315815b3112cd8e3 /activejob
parentb7a041fc5d456705be0a6e8565ce2ef9af5a22dc (diff)
parentece366be0710bf86c201b8c22ad3aa4df10f1555 (diff)
downloadrails-1f8cc53689ead6befbbb6d8d7436596270738ff3.tar.gz
rails-1f8cc53689ead6befbbb6d8d7436596270738ff3.tar.bz2
rails-1f8cc53689ead6befbbb6d8d7436596270738ff3.zip
Merge pull request #22226 from boone/docs
ActiveJob docs text fix. [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r--activejob/README.md2
-rw-r--r--activejob/lib/active_job/base.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/activejob/README.md b/activejob/README.md
index f9a3183b1a..d9ff561695 100644
--- a/activejob/README.md
+++ b/activejob/README.md
@@ -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
diff --git a/activejob/lib/active_job/base.rb b/activejob/lib/active_job/base.rb
index e5f09f65fb..ff5c69ddc6 100644
--- a/activejob/lib/active_job/base.rb
+++ b/activejob/lib/active_job/base.rb
@@ -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)
#