From 53f41f9483c80a50b643f9e7e410b0f7bb8be48b Mon Sep 17 00:00:00 2001 From: Pavan Shinde Date: Mon, 9 Feb 2026 11:08:11 +0000 Subject: [PATCH 1/3] Fix punctuation in contributing guide --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 4dfe6eba98fe..0874ce4fcb6e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -76,7 +76,7 @@ To run the integration tests, use: pnpm build && pnpm test:integrations ``` -Additionally, some features require testing in browsers (i.e to ensure CSS variable resolution works as expected). These can be run via: +Additionally, some features require testing in browsers (i.e., to ensure CSS variable resolution works as expected). These can be run via: ```sh pnpm build && pnpm test:ui From d0b305a312f6e283a9601067ec220c54e3dd1ad3 Mon Sep 17 00:00:00 2001 From: Pavan Shinde Date: Mon, 9 Feb 2026 11:14:30 +0000 Subject: [PATCH 2/3] Fix "can not" phrasing in test titles --- packages/tailwindcss/src/css-functions.test.ts | 2 +- packages/tailwindcss/src/index.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tailwindcss/src/css-functions.test.ts b/packages/tailwindcss/src/css-functions.test.ts index 0c5a3c97e46a..3e880dd8b0d7 100644 --- a/packages/tailwindcss/src/css-functions.test.ts +++ b/packages/tailwindcss/src/css-functions.test.ts @@ -1361,7 +1361,7 @@ test('resolves paths ending with a 1', async () => { `) }) -test('upgrades to a full JS compat theme lookup if a value can not be mapped to a CSS variable', async () => { +test('upgrades to a full JS compat theme lookup if a value cannot be mapped to a CSS variable', async () => { expect( await compileCss( css` diff --git a/packages/tailwindcss/src/index.test.ts b/packages/tailwindcss/src/index.test.ts index 3bc3edad33eb..5eb7407d81dd 100644 --- a/packages/tailwindcss/src/index.test.ts +++ b/packages/tailwindcss/src/index.test.ts @@ -3098,7 +3098,7 @@ describe('plugins', () => { ).rejects.toThrowErrorMatchingInlineSnapshot(`[Error: \`@plugin\` must have a path.]`) }) - test('@plugin can not have an empty path', () => { + test('@plugin cannot have an empty path', () => { return expect( compile( css` From 6286a37e5db62b66b6975d81a552bb39f5e81dcd Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Wed, 18 Feb 2026 13:18:54 +0100 Subject: [PATCH 3/3] dorp the `,` --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 0874ce4fcb6e..63f79fa100e6 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -76,7 +76,7 @@ To run the integration tests, use: pnpm build && pnpm test:integrations ``` -Additionally, some features require testing in browsers (i.e., to ensure CSS variable resolution works as expected). These can be run via: +Additionally, some features require testing in browsers (i.e. to ensure CSS variable resolution works as expected). These can be run via: ```sh pnpm build && pnpm test:ui