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

Merge pull request #11716 from jetthoughts/use_backquote_for_terms_in_getting_strated

Replaced quotation marks for term by apostrophes in getting started guide [ci skip]
This commit is contained in:
Carlos Antonio da Silva 2013-08-02 09:33:56 -07:00
commit 77a0030316

View file

@ -621,9 +621,9 @@ it! You should get an error that looks like this:
Rails has several security features that help you write secure applications,
and you're running into one of them now. This one is called
'strong_parameters,' which requires us to tell Rails exactly which parameters
`strong_parameters`, which requires us to tell Rails exactly which parameters
we want to accept in our controllers. In this case, we want to allow the
'title' and 'text' parameters, so change your `create` controller action to
`title` and `text` parameters, so change your `create` controller action to
look like this:
```