aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-07-09 20:19:44 -0700
committerZachary Scott <e@zzak.io>2014-07-09 20:19:44 -0700
commitb9ffae8feb453ee2961b5284fe3310b227532179 (patch)
treed682bea28e186c6a3d789923f3aadda79620bf42 /guides
parentf149e71d0b574034ff79bdc9bb80876a86ec03d6 (diff)
parent50555f3c983ce635c0c4bbb9f24281f3a4df7ab4 (diff)
downloadrails-b9ffae8feb453ee2961b5284fe3310b227532179.tar.gz
rails-b9ffae8feb453ee2961b5284fe3310b227532179.tar.bz2
rails-b9ffae8feb453ee2961b5284fe3310b227532179.zip
Merge pull request #16118 from JayK31/strong_params_link
[ci skip] Fixed link to strong params in Getting Started section 5.6.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 0e121b6f75..ef97cda3bc 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -749,8 +749,7 @@ to create an article. Try it! You should get an error that looks like this:
(images/getting_started/forbidden_attributes_for_new_article.png)
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]
-(http://guides.rubyonrails.org/action_controller_overview.html#strong-parameters)`,
+and you're running into one of them now. This one is called [strong parameters](http://guides.rubyonrails.org/action_controller_overview.html#strong-parameters),
which requires us to tell Rails exactly which parameters are allowed into our
controller actions.