aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorDave Powers <djpowers@users.noreply.github.com>2015-07-20 13:08:08 -0400
committerDave Powers <djpowers@users.noreply.github.com>2015-07-20 13:08:08 -0400
commit0e2cc9bc0debe893a8d151dfb4a3694b6b93505f (patch)
tree9ad150145ec8e9194dcbba3ea084d8ef72a681ee /guides/source/testing.md
parent17b846004d63f94b09b1a86986d9bfb3d64dda2a (diff)
downloadrails-0e2cc9bc0debe893a8d151dfb4a3694b6b93505f.tar.gz
rails-0e2cc9bc0debe893a8d151dfb4a3694b6b93505f.tar.bz2
rails-0e2cc9bc0debe893a8d151dfb4a3694b6b93505f.zip
Fix minor typo in testing guide
[ci skip]
Diffstat (limited to 'guides/source/testing.md')
-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
--------------------