aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorRonak Jangir <ronakjangir47@gmail.com>2015-10-07 21:07:46 +0530
committerRonak Jangir <ronakjangir47@gmail.com>2015-10-07 21:07:46 +0530
commit495722a95687e25114ae75608dd3107ac5d6611b (patch)
treed141452f4cdff2b2197fcbc8d30943cb65dc6642 /actionpack/lib
parent7976b6d3069d18aa4279921e15d90ef13197fd78 (diff)
downloadrails-495722a95687e25114ae75608dd3107ac5d6611b.tar.gz
rails-495722a95687e25114ae75608dd3107ac5d6611b.tar.bz2
rails-495722a95687e25114ae75608dd3107ac5d6611b.zip
Fixed wording in Assertion docs, changed ‘Assert’ -> ‘Asserts’
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/testing/assertions/response.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/response.rb b/actionpack/lib/action_dispatch/testing/assertions/response.rb
index b6e21b0d28..a58c5d9beb 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/response.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/response.rb
@@ -42,7 +42,7 @@ module ActionDispatch
end
end
- # Assert that the redirection options passed in match those of the redirect called in the latest action.
+ # Asserts that the redirection options passed in match those of the redirect called in the latest action.
# This match can be partial, such that <tt>assert_redirected_to(controller: "weblog")</tt> will also
# match the redirection of <tt>redirect_to(controller: "weblog", action: "show")</tt> and so on.
#