Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwindcss/src/css-functions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwindcss/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down