aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-08-02 15:25:45 +0300
committerPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-08-02 15:26:43 +0300
commit1130896c4d713812c81ce7178159864d45a25c5a (patch)
tree465ee4a18bda95f9e3598f815a20f2d9d5a0d1c6 /guides/source
parent3152bb06cc3f82d05674bea60c2668d824e3c7a6 (diff)
downloadrails-1130896c4d713812c81ce7178159864d45a25c5a.tar.gz
rails-1130896c4d713812c81ce7178159864d45a25c5a.tar.bz2
rails-1130896c4d713812c81ce7178159864d45a25c5a.zip
Replaced quotation marks for term by apostrophe
in getting started guide for section 5.6 [ci skip]
Diffstat (limited to 'guides/source')
-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:
```