aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_storage_overview.md
diff options
context:
space:
mode:
authorJeffrey Guenther <guenther.jeffrey@gmail.com>2017-11-18 17:30:26 -0800
committerJeffrey Guenther <guenther.jeffrey@gmail.com>2017-11-18 17:30:26 -0800
commited8b299ec02607aee63788915b41d2dab8b142ff (patch)
treee5ba84b2222415b18a00ff2ebbe3af1e65683e26 /guides/source/active_storage_overview.md
parent6aac8fa3ec355f304d235f2e5a14a852584b6f02 (diff)
downloadrails-ed8b299ec02607aee63788915b41d2dab8b142ff.tar.gz
rails-ed8b299ec02607aee63788915b41d2dab8b142ff.tar.bz2
rails-ed8b299ec02607aee63788915b41d2dab8b142ff.zip
Proofreading
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 04f0ccec99..c3262c85e0 100644
--- a/guides/source/active_storage_overview.md
+++ b/guides/source/active_storage_overview.md
@@ -338,8 +338,8 @@ Clean up Stored Files Store During System Tests
System tests clean up test data by rolling back a transaction. Because destroy
is never called on an object, the attached files are never cleaned up. If you
want to clear the files, you can do it in an `after_teardown` callback. Doing it
-here ensures that all connections to created during the test are complete and
-you won't get an error from ActiveStorage saying it can't find a file.
+here ensures that all connections created during the test are complete and
+you won't receive an error from ActiveStorage saying it can't find a file.
``` ruby
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase