Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typos #3430

Merged
merged 1 commit into from
Sep 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion allauth/account/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def try_save(self, request):
email and return a standard "email verification sent" response.
"""
if self.account_already_exists:
# Don't create a new acount, only send an email informing the user
# Don't create a new account, only send an email informing the user
# that (s)he already has one...
email = self.cleaned_data["email"]
adapter = get_adapter()
Expand Down
2 changes: 1 addition & 1 deletion allauth/socialaccount/providers/notion/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class NotionProvider(OAuth2Provider):

def extract_uid(self, data):
"""
The unique identifer for Notion is a combination of the User ID
The unique identifier for Notion is a combination of the User ID
and the Workspace ID they have authorized the application with.
"""
user_id = data["owner"]["user"]["id"]
Expand Down
2 changes: 1 addition & 1 deletion docs/account/forms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Change Password
*Used on*:
`account_change_password <views.html#password-management>`__ view.

Example overrride::
Example override::

from allauth.account.forms import ChangePasswordForm
class MyCustomChangePasswordForm(ChangePasswordForm):
Expand Down
2 changes: 1 addition & 1 deletion docs/account/views.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ email is sent pointing to the
``allauth.account.views.ConfirmEmailView`` view.

The setting ``ACCOUNT_CONFIRM_EMAIL_ON_GET`` determines whether users
have to manually confirm the address by submiting a confirmation form,
have to manually confirm the address by submitting a confirmation form,
or whether the address is automatically confirmed by a mere GET
request.
2 changes: 1 addition & 1 deletion docs/mfa/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ Authentication. It supports:

- Viewing, downloading and regenerating recovery codes.

Note that in order to use this functionality you need to instal the ``mfa`` extras of the ``django-allauth`` package::
Note that in order to use this functionality you need to install the ``mfa`` extras of the ``django-allauth`` package::

pip install django-allauth[mfa]
2 changes: 1 addition & 1 deletion docs/socialaccount/providers/miro.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Miro
----

Create your app here and aquire Client ID and Client Secret
Create your app here and acquire Client ID and Client Secret
https://miro.com/app/settings/user-profile/apps

Development callback URL
Expand Down