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 integrations/oxide/wasm.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { css, js, json, test } from '../utils'

// This test runs the the wasm build using the `node:wasi` runtine.
// This test runs the wasm build using the `node:wasi` runtine.
//
// There are currently a known problems that the Node WASI preview implementation does not properly
// handle FS reads on macOS and it does not implement all APIs on Windows. Because of that, this
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwindcss/src/ast.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ it('should never visit children when calling `replaceWith` with `WalkAction.Skip
`)
})

it('should skip the correct number of children based on the the replaced children nodes', () => {
it('should skip the correct number of children based on the replaced children nodes', () => {
{
let ast = [
decl('--index', '0'),
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwindcss/src/css-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function theme(
let joinedFallback = fallback.join(', ')
if (joinedFallback === 'initial') return resolvedValue

// When the resolved value returns `initial`, resolve with the the fallback value
// When the resolved value returns `initial`, resolve with the fallback value
if (resolvedValue === 'initial') return joinedFallback

// Inject the fallback of a `--theme(…)` function into the fallback of a referenced `--theme(…)`
Expand Down