aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-07-20 11:52:28 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-07-20 11:52:28 -0600
commita2bb266a7f546edfba8e82e75f1f01bb359f7bbd (patch)
tree9ad150145ec8e9194dcbba3ea084d8ef72a681ee /guides
parent17b846004d63f94b09b1a86986d9bfb3d64dda2a (diff)
parent0e2cc9bc0debe893a8d151dfb4a3694b6b93505f (diff)
downloadrails-a2bb266a7f546edfba8e82e75f1f01bb359f7bbd.tar.gz
rails-a2bb266a7f546edfba8e82e75f1f01bb359f7bbd.tar.bz2
rails-a2bb266a7f546edfba8e82e75f1f01bb359f7bbd.zip
Merge pull request #20956 from djpowers/patch-1
Fix minor typo in testing guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index d146df3dc6..f40e765242 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -1081,7 +1081,7 @@ Finally we can assert that our response was successful, template was rendered, a
#### Taking it further
-We were able to successfully test a very small workflow for visiting our blog and creating a new article. If we wanted to take this further we could add tests for commenting, removing articles, or editting comments. Integration tests are a great place to experiment with all kinds of use-cases for our applications.
+We were able to successfully test a very small workflow for visiting our blog and creating a new article. If we wanted to take this further we could add tests for commenting, removing articles, or editing comments. Integration tests are a great place to experiment with all kinds of use-cases for our applications.
Testing Your Mailers
--------------------