1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix typo in getting_started [ci skip] (#27423)

This commit is contained in:
yachibit 2016-12-22 01:14:53 +09:00 committed by Vipul A M
parent cb029207e1
commit 85b2a3ea2f

View file

@ -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.