aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_storage_overview.md
diff options
context:
space:
mode:
authorJeffrey Guenther <guenther.jeffrey@gmail.com>2017-11-21 10:29:41 -0800
committerJeffrey Guenther <guenther.jeffrey@gmail.com>2017-11-21 10:29:41 -0800
commit89f8471237e4c2efd4279646f10fa59c9cd1c7c7 (patch)
tree8d2eb6de748a4c838aff13c1ad96d0414ad8d3dd /guides/source/active_storage_overview.md
parent3bd34fcceed2f4ec78c1bf0134d3c8b97c34c5a9 (diff)
downloadrails-89f8471237e4c2efd4279646f10fa59c9cd1c7c7.tar.gz
rails-89f8471237e4c2efd4279646f10fa59c9cd1c7c7.tar.bz2
rails-89f8471237e4c2efd4279646f10fa59c9cd1c7c7.zip
Corrects Active Job spelling
Diffstat (limited to 'guides/source/active_storage_overview.md')
-rw-r--r--guides/source/active_storage_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md
index 10ff3de453..43862236c3 100644
--- a/guides/source/active_storage_overview.md
+++ b/guides/source/active_storage_overview.md
@@ -233,7 +233,7 @@ Remove File Attached to Model
-------------------------------
To remove an attachment from a model, call `purge` on the attachment. Removal
-can be done in the background if your application is setup to use ActiveJob.
+can be done in the background if your application is setup to use Active Job.
Purging deletes the blob and the file from the storage service.
```ruby
@@ -369,7 +369,7 @@ end
```
If your system tests verify the deletion of a model with attachments and your
-using ActiveJob, set your test environment to use the inline queue adapter so
+using Active Job, set your test environment to use the inline queue adapter so
the purge job is executed immediately rather at an unknown time in the future.
You may also want to use a separate service definition for the test environment