aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-08-31 05:38:42 +0900
committerGitHub <noreply@github.com>2018-08-31 05:38:42 +0900
commitd48f4ddfc8dd38b65f7a040c5c9c7d1468114d2d (patch)
tree92c897e97dd385c966a78f748e4c067702bbe8ca
parent5bbaae0d20147d392f1458f1a99d85c245040d04 (diff)
parente7a3df190c94cfdac833f2d95bd1740ba3d27b25 (diff)
downloadrails-d48f4ddfc8dd38b65f7a040c5c9c7d1468114d2d.tar.gz
rails-d48f4ddfc8dd38b65f7a040c5c9c7d1468114d2d.tar.bz2
rails-d48f4ddfc8dd38b65f7a040c5c9c7d1468114d2d.zip
Merge pull request #33762 from nicolasmlv/typo
Typo in form_helpers.md guide [ci skip]
-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