aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-09 00:39:27 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-09 00:40:15 +0530
commit517613c39e3b5130d417989f8f6e1a74ba2ccfc1 (patch)
tree5fd48c89902a047f764f3a557f67be1a266d4169 /actionpack/lib/action_controller
parent37b36842330b5db1996fda80e387eae3a5781db8 (diff)
downloadrails-517613c39e3b5130d417989f8f6e1a74ba2ccfc1.tar.gz
rails-517613c39e3b5130d417989f8f6e1a74ba2ccfc1.tar.bz2
rails-517613c39e3b5130d417989f8f6e1a74ba2ccfc1.zip
Improved readability of Assertion docs, replaced ‘Assert’ -> ‘Asserts’ at all places [ci skip]
Following commit https://github.com/rails/docrails/commit/495722a95687e25114ae75608dd3107ac5d6611b
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/test_case.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index cf78688126..8bd00d9c87 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -210,11 +210,11 @@ module ActionController
# # Simulate a POST response with the given HTTP parameters.
# post(:create, params: { book: { title: "Love Hina" }})
#
- # # Assert that the controller tried to redirect us to
+ # # Asserts that the controller tried to redirect us to
# # the created book's URI.
# assert_response :found
#
- # # Assert that the controller really put the book in the database.
+ # # Asserts that the controller really put the book in the database.
# assert_not_nil Book.find_by(title: "Love Hina")
# end
# end