aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Schneeman <richard.schneeman@gmail.com>2015-11-01 11:24:46 -0600
committerRichard Schneeman <richard.schneeman@gmail.com>2015-11-01 11:24:46 -0600
commit9e78eb18e54c465056b61c88363e7faf219cb90d (patch)
tree1fc7615ced885a7e731cc0ca72e2386b4b835e58
parentd53de10cb35e9710389391cf5cd63340745a0ab8 (diff)
parent1f47adcc293dc197512a9b8fecb31b14e5b7c336 (diff)
downloadrails-9e78eb18e54c465056b61c88363e7faf219cb90d.tar.gz
rails-9e78eb18e54c465056b61c88363e7faf219cb90d.tar.bz2
rails-9e78eb18e54c465056b61c88363e7faf219cb90d.zip
Merge pull request #22147 from jwworth/pull-request/double-string
Fix double word 'string' [ci skip]
-rw-r--r--actionpack/lib/action_dispatch/testing/assertions/routing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/routing.rb b/actionpack/lib/action_dispatch/testing/assertions/routing.rb
index 1051c787f3..78ef860548 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/routing.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/routing.rb
@@ -18,7 +18,7 @@ module ActionDispatch
# assert_recognizes({controller: 'items', action: 'create'}, {path: 'items', method: :post})
#
# You can also pass in +extras+ with a hash containing URL parameters that would normally be in the query string. This can be used
- # to assert that values in the query string string will end up in the params hash correctly. To test query strings you must use the
+ # to assert that values in the query string will end up in the params hash correctly. To test query strings you must use the
# extras argument, appending the query string on the path directly will not work. For example:
#
# # Asserts that a path of '/items/list/1?view=print' returns the correct options