aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-08-02 09:33:56 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-08-02 09:33:56 -0700
commit77a0030316d2acc348cf9dda0452776d3457f8d5 (patch)
tree288b462784617504a85eb86e74f1927e619ad0f9 /guides
parenta256f6224d335cd2864255a9d0ad96060e03c626 (diff)
parent1130896c4d713812c81ce7178159864d45a25c5a (diff)
downloadrails-77a0030316d2acc348cf9dda0452776d3457f8d5.tar.gz
rails-77a0030316d2acc348cf9dda0452776d3457f8d5.tar.bz2
rails-77a0030316d2acc348cf9dda0452776d3457f8d5.zip
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]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 58bf8bbe90..27768952cc 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -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:
```