Skip to content

Commit 4172800

Browse files
authored
Fix Cross-Site Request Forgery acronym typo
Fix Cross-Site Request Forgery acronym typo CSFR -> CSRF
1 parent f3ecab7 commit 4172800

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/intro/widget-basics/security-and-validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ The Cross-Site Request Forgery is generally initiated by a malicious script and
5252

5353
The anti-forgery tokens are used to ensure that a form or a request has been submitted by the user and not by a malicious script. The also called request validation tokens are hidden inputs that have a randomly generated value that cannot be read by a script.
5454

55-
The following examples demonstrate the steps for implementing the CSFR token validation.
55+
The following examples demonstrate the steps for implementing the CSRF token validation.
5656

57-
1. Include the CSFR token in the page.
57+
1. Include the CSRF token in the page.
5858

5959
```
6060
Html.AntiForgeryToken()

0 commit comments

Comments
 (0)