Skip to content

Commit

Permalink
fix: typos in documentation files (#4666)
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Evtush <[email protected]>
  • Loading branch information
maximevtush authored Feb 10, 2025
1 parent 576be7c commit cc2f6f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/core/auth-nextjs-email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ docker run --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgre
npx prisma migrate dev --schema=./src/prisma/schema.prisma
```

5. You also need to supply the following enviroment variables for the email server to work:
5. You also need to supply the following environment variables for the email server to work:

```bash
EMAIL_SERVER_HOST=
Expand Down
2 changes: 1 addition & 1 deletion test/integration/data-grid/custom.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test('Code component cell', async ({ page }) => {
).toBeVisible();
await expect(editorModel.pageRoot.getByText('field: "customField"')).toBeVisible();

// Can use cusom component for id field
// Can use custom component for id field
await expect(editorModel.pageRoot.getByText('[id:0]')).toBeVisible();
});

Expand Down
2 changes: 1 addition & 1 deletion test/integration/undo-redo/basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ test('test batching text input actions into single undo entry', async ({ page })
// Undo changes
await page.keyboard.press('Control+Z');

// Asssert that batched changes were reverted
// Assert that batched changes were reverted
await expect(input).toHaveValue('some value');
});

0 comments on commit cc2f6f2

Please sign in to comment.