aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-12-13 14:58:20 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2015-12-13 14:58:20 +0100
commit6be27016dff19fc7509d3668aba375fd332d6822 (patch)
tree57d68785740e3a2a2ea3efa4952f40e17fb01a90 /guides
parent2de7385cef62ad12cef5bcfe1de18c4662072344 (diff)
downloadrails-6be27016dff19fc7509d3668aba375fd332d6822.tar.gz
rails-6be27016dff19fc7509d3668aba375fd332d6822.tar.bz2
rails-6be27016dff19fc7509d3668aba375fd332d6822.zip
[ci skip] Fix articles spelling.
Tiny typo in the testing guide; articules should be articles.
Diffstat (limited to 'guides')
-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 d09c0ae464..58524fd6c5 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -757,7 +757,7 @@ To test AJAX requests, you can specify the `xhr: true` option to `get`, `post`,
```ruby
test "ajax request" do
- article = articules(:first)
+ article = articles(:first)
get article_url(article), xhr: true
assert_equal 'hello world', @response.body