aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authoryachibit <y.yachix@gmail.com>2016-12-22 01:14:53 +0900
committerVipul A M <vipulnsward@gmail.com>2016-12-21 21:44:53 +0530
commit85b2a3ea2f4b614c1b7135e28b86e14fc109e8e5 (patch)
tree78d378f34d7c75150605787ce9084cc8d4a95a96 /guides/source/getting_started.md
parentcb029207e19f511cb7b32c0819acb10dbaeb1198 (diff)
downloadrails-85b2a3ea2f4b614c1b7135e28b86e14fc109e8e5.tar.gz
rails-85b2a3ea2f4b614c1b7135e28b86e14fc109e8e5.tar.bz2
rails-85b2a3ea2f4b614c1b7135e28b86e14fc109e8e5.zip
fix typo in getting_started [ci skip] (#27423)
Diffstat (limited to 'guides/source/getting_started.md')
-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 6ec5106bb3..f434ca3caf 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -474,7 +474,7 @@ one here because the `ArticlesController` inherits from `ApplicationController`.
The next part of the message contains `request.formats` which specifies
the format of template to be served in response. It is set to `text/html` as we
requested this page via browser, so Rails is looking for an HTML template.
-`request.variants` specifies what kind of physical devices would be served by
+`request.variant` specifies what kind of physical devices would be served by
the response and helps Rails determine which template to use in the response.
It is empty because no information has been provided.