aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-01-10 09:57:37 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-01-10 09:57:37 +0900
commit7ccd070c91ae1089f307c8557dcbd9a14837316c (patch)
tree66333516732e5d4a1b19212180e18a9361fd8c3f /guides
parentb8e5d4f9dffb35b7b0ca2f583cb1c9258a7d7cbe (diff)
downloadrails-7ccd070c91ae1089f307c8557dcbd9a14837316c.tar.gz
rails-7ccd070c91ae1089f307c8557dcbd9a14837316c.tar.bz2
rails-7ccd070c91ae1089f307c8557dcbd9a14837316c.zip
Fix "the the " [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md2
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index bf310cf2db..b82ccebe7c 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -778,7 +778,7 @@ Then the test will fill in the title and body of the article with the specified
text. Once the fields are filled in, "Create Article" is clicked on which will
send a POST request to create the new article in the database.
-We will be redirected back to the the articles index page and there we assert
+We will be redirected back to the articles index page and there we assert
that the text from the new article's title is on the articles index page.
#### Taking it further
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index bb4ef26876..33ab50b0e8 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -72,7 +72,7 @@ For more information on changes made to Rails 5.1 please see the [release notes]
### Top-level `HashWithIndifferentAccess` is soft-deprecated
-If your application uses the the top-level `HashWithIndifferentAccess` class, you
+If your application uses the top-level `HashWithIndifferentAccess` class, you
should slowly move your code to instead use `ActiveSupport::HashWithIndifferentAccess`.
It is only soft-deprecated, which means that your code will not break at the