aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/form_helpers.md
diff options
context:
space:
mode:
authorNicolas Maloeuvre <nicolas.maloeuvre@gmail.com>2018-08-30 22:23:54 +0200
committerNicolas Maloeuvre <nicolas.maloeuvre@gmail.com>2018-08-30 22:23:54 +0200
commite7a3df190c94cfdac833f2d95bd1740ba3d27b25 (patch)
tree92c897e97dd385c966a78f748e4c067702bbe8ca /guides/source/form_helpers.md
parent5bbaae0d20147d392f1458f1a99d85c245040d04 (diff)
downloadrails-e7a3df190c94cfdac833f2d95bd1740ba3d27b25.tar.gz
rails-e7a3df190c94cfdac833f2d95bd1740ba3d27b25.tar.bz2
rails-e7a3df190c94cfdac833f2d95bd1740ba3d27b25.zip
[ci skip] Typo in form helpers guide
Diffstat (limited to 'guides/source/form_helpers.md')
-rw-r--r--guides/source/form_helpers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index 12cfe249b6..3660772fb9 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -40,7 +40,7 @@ When called without arguments like this, it creates a form tag which, when submi
```
You'll notice that the HTML contains an `input` element with type `hidden`. This `input` is important, because non-GET form cannot be successfully submitted without it.
-The hidden input element with the name `authenticity_token` is a security feature of Rails called **cross-site request forgery protection**, and form helpers generate it for every non-GET form (provided that this security feature is enabled). You can read more about this in the [Security Guide](security.html#cross-site-request-forgery-csrf) guide.
+The hidden input element with the name `authenticity_token` is a security feature of Rails called **cross-site request forgery protection**, and form helpers generate it for every non-GET form (provided that this security feature is enabled). You can read more about this in the [Securing Rails Applications](security.html#cross-site-request-forgery-csrf) guide.
### A Generic Search Form