aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-01-22 17:13:20 -0500
committerGitHub <noreply@github.com>2018-01-22 17:13:20 -0500
commitb4a2575475d1e552a10850e9bd95ba2a0cf516a8 (patch)
tree82b3a4fb02026640059b95ba9ec7e3925f01862e /guides
parentac74e2c521f6ddc0eac02d74a1313261bcc1d60f (diff)
parenta43bf9f12f4facaae98cba8dec8435c60b633e09 (diff)
downloadrails-b4a2575475d1e552a10850e9bd95ba2a0cf516a8.tar.gz
rails-b4a2575475d1e552a10850e9bd95ba2a0cf516a8.tar.bz2
rails-b4a2575475d1e552a10850e9bd95ba2a0cf516a8.zip
Merge pull request #31765 from utilum/lang
remove text repetition
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index e30909aa62..6cf99a7e5c 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -462,7 +462,7 @@ You're getting this error now because Rails expects plain actions like this one
to have views associated with them to display their information. With no view
available, Rails will raise an exception.
-Let's look at the full error message looks again:
+Let's look at the full error message again:
>ArticlesController#new is missing a template for this request format and variant. request.formats: ["text/html"] request.variant: [] NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not… nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.