From cc2f6f2269a8a956308b9612772e925ac5fc0049 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Mon, 10 Feb 2025 09:17:41 +0100 Subject: [PATCH] fix: typos in documentation files (#4666) Signed-off-by: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> --- examples/core/auth-nextjs-email/README.md | 2 +- test/integration/data-grid/custom.spec.ts | 2 +- test/integration/undo-redo/basic.spec.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/core/auth-nextjs-email/README.md b/examples/core/auth-nextjs-email/README.md index 5b8b2c95b21..804f8ed65b9 100644 --- a/examples/core/auth-nextjs-email/README.md +++ b/examples/core/auth-nextjs-email/README.md @@ -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= diff --git a/test/integration/data-grid/custom.spec.ts b/test/integration/data-grid/custom.spec.ts index ea5b953319a..d2629327805 100644 --- a/test/integration/data-grid/custom.spec.ts +++ b/test/integration/data-grid/custom.spec.ts @@ -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(); }); diff --git a/test/integration/undo-redo/basic.spec.ts b/test/integration/undo-redo/basic.spec.ts index 444f97c6422..3dc6c557cb7 100644 --- a/test/integration/undo-redo/basic.spec.ts +++ b/test/integration/undo-redo/basic.spec.ts @@ -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'); });