Skip to content

Commit de06c2f

Browse files
committed
[DATALAD RUNCMD] chore: run codespell throughout fixing a few new typos automagically
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent db0c00b commit de06c2f

21 files changed

Lines changed: 27 additions & 27 deletions

File tree

apps/api/plane/api/serializers/intake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Module improts
1+
# Module imports
22
from .base import BaseSerializer
33
from .issue import IssueExpandSerializer
44
from plane.db.models import IntakeIssue, Issue

apps/api/plane/app/views/cycle/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ def get(self, request, slug, project_id, cycle_id):
12851285
if the issues were transferred to the new cycle, then the progress_snapshot will be present
12861286
return the progress_snapshot data in the analytics for each date
12871287
1288-
else issues were not transferred to the new cycle then generate the stats from the cycle isssue bridge tables
1288+
else issues were not transferred to the new cycle then generate the stats from the cycle issue bridge tables
12891289
"""
12901290

12911291
if cycle.progress_snapshot:

apps/api/plane/app/views/project/member.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def create(self, request, slug, project_id):
4848
# Check if the members array is empty
4949
if not len(members):
5050
return Response(
51-
{"error": "Atleast one member is required"},
51+
{"error": "At least one member is required"},
5252
status=status.HTTP_400_BAD_REQUEST,
5353
)
5454

apps/api/plane/authentication/adapter/error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"INCORRECT_OLD_PASSWORD": 5135,
4949
"MISSING_PASSWORD": 5138,
5050
"INVALID_NEW_PASSWORD": 5140,
51-
# set passowrd
51+
# set password
5252
"PASSWORD_ALREADY_SET": 5145,
5353
# Admin
5454
"ADMIN_ALREADY_EXIST": 5150,

apps/api/plane/db/management/commands/activate_user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ def handle(self, *args, **options):
3131
user.is_active = True
3232
user.save()
3333

34-
self.stdout.write(self.style.SUCCESS("User activated succesfully"))
34+
self.stdout.write(self.style.SUCCESS("User activated successfully"))

apps/api/plane/db/management/commands/reset_password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ def handle(self, *args, **options):
5959
user.is_password_autoset = False
6060
user.save()
6161

62-
self.stdout.write(self.style.SUCCESS("User password updated succesfully"))
62+
self.stdout.write(self.style.SUCCESS("User password updated successfully"))

apps/api/plane/db/management/commands/update_bucket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def check_s3_permissions(self, bucket_name):
7474
try:
7575
s3_client.delete_object(Bucket=bucket_name, Key="test_permission_check.txt")
7676
except ClientError:
77-
self.stdout.write("Coudn't delete test object")
77+
self.stdout.write("Couldn't delete test object")
7878

7979
# 4. Test s3:PutBucketPolicy (attempt to put a bucket policy)
8080
try:

apps/space/helpers/authentication.helper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export enum EAuthenticationErrorCodes {
6666
INCORRECT_OLD_PASSWORD = "5135",
6767
MISSING_PASSWORD = "5138",
6868
INVALID_NEW_PASSWORD = "5140",
69-
// set passowrd
69+
// set password
7070
PASSWORD_ALREADY_SET = "5145",
7171
// Admin
7272
ADMIN_ALREADY_EXIST = "5150",

apps/web/ce/store/timeline/base-timeline.store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ export class BaseTimeLineStore implements IBaseTimelineStore {
313313
});
314314

315315
/**
316-
* updates the block's position such as marginLeft and width wile dragging
316+
* updates the block's position such as marginLeft and width while dragging
317317
* @param id
318318
* @param deltaLeft
319319
* @param deltaWidth

apps/web/core/components/issues/issue-layouts/list/base-list-root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export const BaseListRoot = observer((props: IBaseListRoot) => {
132132
[fetchNextIssues]
133133
);
134134

135-
// kanbanFilters and EIssueFilterType.KANBAN_FILTERS are used becuase the state is shared between kanban view and list view
135+
// kanbanFilters and EIssueFilterType.KANBAN_FILTERS are used because the state is shared between kanban view and list view
136136
const handleCollapsedGroups = useCallback(
137137
(value: string) => {
138138
if (workspaceSlug) {

0 commit comments

Comments
 (0)