Skip to content

Commit c318329

Browse files
authored
chore: remove redundant words (#18853)
1 parent ddc84b0 commit c318329

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

integrations/oxide/wasm.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { css, js, json, test } from '../utils'
22

3-
// This test runs the the wasm build using the `node:wasi` runtine.
3+
// This test runs the wasm build using the `node:wasi` runtine.
44
//
55
// There are currently a known problems that the Node WASI preview implementation does not properly
66
// handle FS reads on macOS and it does not implement all APIs on Windows. Because of that, this

packages/tailwindcss/src/ast.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ it('should never visit children when calling `replaceWith` with `WalkAction.Skip
403403
`)
404404
})
405405

406-
it('should skip the correct number of children based on the the replaced children nodes', () => {
406+
it('should skip the correct number of children based on the replaced children nodes', () => {
407407
{
408408
let ast = [
409409
decl('--index', '0'),

packages/tailwindcss/src/css-functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function theme(
104104
let joinedFallback = fallback.join(', ')
105105
if (joinedFallback === 'initial') return resolvedValue
106106

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

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

0 commit comments

Comments
 (0)