From 231ce8bcba18763090660f451f6858dc13a0d241 Mon Sep 17 00:00:00 2001 From: tinyboxvk Date: Thu, 31 Oct 2024 12:36:31 -0300 Subject: [PATCH] Fix typo in Django_Security_Cheat_Sheet.md (#1525) --- cheatsheets/Django_Security_Cheat_Sheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheatsheets/Django_Security_Cheat_Sheet.md b/cheatsheets/Django_Security_Cheat_Sheet.md index 0e4d13e308..2f21e8f589 100644 --- a/cheatsheets/Django_Security_Cheat_Sheet.md +++ b/cheatsheets/Django_Security_Cheat_Sheet.md @@ -107,7 +107,7 @@ The `SECRET_KEY` parameter in settings.py is used for cryptographic signing and SECRET_KEY = os.environ.get('DJANGO_SECRET_KEY') ``` -- Regularly rotate the key, keeping in mind that this action can invalidate sessions, password reset tokens, etc. Rotate the key immediatley it if it ever gets exposed. +- Regularly rotate the key, keeping in mind that this action can invalidate sessions, password reset tokens, etc. Rotate the key immediately it if it ever gets exposed. ## Headers