Skip to content

Commit bd06620

Browse files
authored
Merge pull request #376 from nikolas/fix-typos
Fix a few random docs typos
2 parents 956d964 + 5a66911 commit bd06620

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

registration/models.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def delete_expired_users(self):
264264
Regularly clearing out accounts which have never been
265265
activated serves two useful purposes:
266266
267-
1. It alleviates the ocasional need to reset a
267+
1. It alleviates the occasional need to reset a
268268
``RegistrationProfile`` and/or re-send an activation email
269269
when a user does not receive or does not act upon the
270270
initial activation email; since the account will be
@@ -380,7 +380,7 @@ def send_activation_email(self, site, request=None):
380380
``RegistrationProfile``.
381381
382382
The activation email will use the following templates,
383-
which can be overriden by setting ACTIVATION_EMAIL_SUBJECT,
383+
which can be overridden by setting ACTIVATION_EMAIL_SUBJECT,
384384
ACTIVATION_EMAIL_BODY, and ACTIVATION_EMAIL_HTML appropriately:
385385
386386
``registration/activation_email_subject.txt``
@@ -558,7 +558,7 @@ def send_admin_approve_email(self, user, site, request=None):
558558
approve this user.
559559
560560
The approval email will use the following templates,
561-
which can be overriden by setting APPROVAL_EMAIL_SUBJECT,
561+
which can be overridden by setting APPROVAL_EMAIL_SUBJECT,
562562
APPROVAL_EMAIL_BODY, and APPROVAL_EMAIL_HTML appropriately:
563563
564564
``registration/admin_approve_email_subject.txt``
@@ -658,7 +658,7 @@ def send_admin_approve_complete_email(self, site, request=None):
658658
``SupervisedRegistrationProfile``.
659659
660660
The email will use the following templates,
661-
which can be overriden by settings APPROVAL_COMPLETE_EMAIL_SUBJECT,
661+
which can be overridden by settings APPROVAL_COMPLETE_EMAIL_SUBJECT,
662662
APPROVAL_COMPLETE_EMAIL_BODY, and APPROVAL_COMPLETE_EMAIL_HTML appropriately:
663663
664664
``registration/admin_approve_complete_email_subject.txt``

registration/tests/default_backend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_registration(self):
9999

100100
def test_registration_no_email(self):
101101
"""
102-
Overriden Registration view does not send an activation email if the
102+
Overridden Registration view does not send an activation email if the
103103
associated class variable is set to ``False``
104104
105105
"""

0 commit comments

Comments
 (0)