Skip to content

Commit

Permalink
docs(debug): fix typo (#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanvanoss authored Nov 23, 2021
1 parent d0963d8 commit 0647554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs/debug/csrf.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ them is protection against CSRF:
> [Source](https://owasp.org/www-community/attacks/csrf)
To protect against CSRF, several endpoints are protected by Anti-CSRF measures.
Typically, endpoints accepting `POST`, `DELTE`, `PUT` actions have Anti-CSRF
Typically, endpoints accepting `POST`, `DELETE`, `PUT` actions have Anti-CSRF
measures. When rendering a form for example, a
`<input type="hidden" name="csrf_token" value="...">` HTML Input Element is
added. Ory Kratos compares that value to the value set in the Anti-CSRF Cookie.
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-v0.8/debug/csrf.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ them is protection against CSRF:
> [Source](https://owasp.org/www-community/attacks/csrf)
To protect against CSRF, several endpoints are protected by Anti-CSRF measures.
Typically, endpoints accepting `POST`, `DELTE`, `PUT` actions have Anti-CSRF
Typically, endpoints accepting `POST`, `DELETE`, `PUT` actions have Anti-CSRF
measures. When rendering a form for example, a
`<input type="hidden" name="csrf_token" value="...">` HTML Input Element is
added. Ory Kratos compares that value to the value set in the Anti-CSRF Cookie.
Expand Down

0 comments on commit 0647554

Please sign in to comment.