From b5e7d719e362a76444a5d15f8b91214db2e3186e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 11 Jul 2016 16:29:53 -0500 Subject: [PATCH] fix spacing --- csrf.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csrf.md b/csrf.md index c0f3e255403..de6ad360b0a 100644 --- a/csrf.md +++ b/csrf.md @@ -56,9 +56,9 @@ In addition to checking for the CSRF token as a POST parameter, the `VerifyCsrfT Then, once you have created the `meta` tag, you can instruct a library like jQuery to automatically add the token to all request headers. This provides simple, convenient CSRF protection for your AJAX based applications: $.ajaxSetup({ - headers: { - 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') - } + headers: { + 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') + } });