Skip to content

Commit

Permalink
✏️(project) fix typos
Browse files Browse the repository at this point in the history
Found typos, fixed them.
  • Loading branch information
lebaudantoine committed Jan 26, 2024
1 parent d4a6a7e commit 2a4c8e7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ make bootstrap
This command builds the `app` container, installs dependencies, performs
database migrations and compile translations. It's a good idea to use this
command each time you are pulling code from the project repository to avoid
dependency-releated or migration-releated issues.
dependency-related or migration-related issues.

Your Docker services should now be up and running 🎉

Expand Down
2 changes: 1 addition & 1 deletion src/backend/core/tests/test_models_identities.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def test_models_identities_email_normalization():


def test_models_identities_ordering():
"""Identitys should be returned ordered by main status then by their email address."""
"""Identities should be returned ordered by main status then by their email address."""
user = factories.UserFactory()
factories.IdentityFactory.create_batch(5, user=user)

Expand Down
2 changes: 1 addition & 1 deletion src/backend/core/tests/test_models_oidc_user_getter.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
pytestmark = pytest.mark.django_db


def test_models_oidc_user_getter_exsting_user_no_email(django_assert_num_queries):
def test_models_oidc_user_getter_existing_user_no_email(django_assert_num_queries):
"""
When a valid token is passed, an existing user matching the token's sub should be returned.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/backend/core/tokens.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tokens for Magnify's core app."""
"""Tokens for People's core app."""
from rest_framework_simplejwt.settings import api_settings
from rest_framework_simplejwt.tokens import Token

Expand Down
2 changes: 1 addition & 1 deletion src/backend/demo/management/commands/createsuperuser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Management command overrring the "createsuperuser" command to allow creating users
Management command overriding the "createsuperuser" command to allow creating users
with their email and no username.
"""
from django.contrib.auth import get_user_model
Expand Down
2 changes: 1 addition & 1 deletion src/backend/people/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_release():

class Base(Configuration):
"""
This is the base configuration every configuration (aka environnement) should inherit from. It
This is the base configuration every configuration (aka environment) should inherit from. It
is recommended to configure third-party applications by creating a configuration mixins in
./configurations and compose the Base configuration with those mixins.
Expand Down

0 comments on commit 2a4c8e7

Please sign in to comment.