From 75d238dce9a747ad727541044c2f31e69b54d319 Mon Sep 17 00:00:00 2001
From: magicfelix <felix@felix-zauberer.de>
Date: Sat, 18 Dec 2021 15:24:47 +0100
Subject: [PATCH] Fix typos

---
 aleksis/core/settings.py           | 6 +++---
 aleksis/core/util/notifications.py | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/aleksis/core/settings.py b/aleksis/core/settings.py
index f5ec9e4c4..df59f9b01 100644
--- a/aleksis/core/settings.py
+++ b/aleksis/core/settings.py
@@ -325,7 +325,7 @@ ACCOUNT_AUTHENTICATION_METHOD = _settings.get("auth.registration.method", "usern
 ACCOUNT_EMAIL_REQUIRED = _settings.get("auth.registration.email_required", True)
 SOCIALACCOUNT_EMAIL_REQUIRED = False
 
-# Require email verification after sigm up
+# Require email verification after sign up
 ACCOUNT_EMAIL_VERIFICATION = _settings.get("auth.registration.email_verification", "mandatory")
 SOCIALACCOUNT_EMAIL_VERIFICATION = False
 
@@ -394,7 +394,7 @@ if _settings.get("ldap.uri", None):
         AUTH_LDAP_BIND_DN = _settings.get("ldap.bind.dn")
         AUTH_LDAP_BIND_PASSWORD = _settings.get("ldap.bind.password")
 
-    # Keep local password for users to be required to proveide their old password on change
+    # Keep local password for users to be required to provide their old password on change
     AUTH_LDAP_SET_USABLE_PASSWORD = _settings.get("ldap.handle_passwords", True)
 
     # Keep bound as the authenticating user
@@ -468,7 +468,7 @@ if _settings.get("ldap.uri", None):
                 "is_superuser"
             ]
 
-# Add ModelBckend last so all other backends get a chance
+# Add ModelBackend last so all other backends get a chance
 # to verify passwords first
 AUTHENTICATION_BACKENDS.append("django.contrib.auth.backends.ModelBackend")
 
diff --git a/aleksis/core/util/notifications.py b/aleksis/core/util/notifications.py
index 38d270570..dac344b7a 100644
--- a/aleksis/core/util/notifications.py
+++ b/aleksis/core/util/notifications.py
@@ -21,7 +21,7 @@ except ImportError:
 def send_templated_sms(
     template_name: str, from_number: str, recipient_list: Sequence[str], context: dict
 ) -> None:
-    """Render a plan-text template and send via SMS to all recipients."""
+    """Render a plain-text template and send via SMS to all recipients."""
     template = get_template(template_name)
     text = template.render(context)
 
-- 
GitLab