Skip to content

Commit

Permalink
Fix minor duplicate word typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lb- committed Jan 24, 2024
1 parent ced2214 commit 54802ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/utils/gettext.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('gettextNoop', () => {
});

describe('pluralIdx', () => {
it('should return false if if Django pluralidx is not loaded', () => {
it('should return false if Django pluralidx is not loaded', () => {
expect(pluralIdx(3)).toEqual(false);
});

Expand Down
2 changes: 1 addition & 1 deletion wagtail/migrations/0048_add_default_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def create_default_workflows(apps, schema_editor):
)
task.groups.set(groups)

# get a Workflow containing only this task if if exists, otherwise create it
# get a Workflow containing only this task if it exists, otherwise create it
workflow = (
Workflow.objects.annotate(task_number=Count("workflow_tasks"))
.filter(task_number=1)
Expand Down

0 comments on commit 54802ab

Please sign in to comment.