Fix: Correct typo in comment (#18361)

This pull request contains a couple of minor documentation fixes.

- Corrected a typo from `predicable` to `predictable` in a comment for
`DarkModeStrategy`.
- Applied minor formatting to a comment in a test file.

These changes help improve code clarity and maintainability.
This commit is contained in:
kilavvy 2025-06-21 21:40:11 +02:00 committed by GitHub
parent d788657774
commit f0e2f5bb7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ describe.each([['default'], ['with-variant'], ['important'], ['prefix']])('%s',
`
test.each([
// Arbitrary property to named functional utlity
// Arbitrary property to named functional utility
['[color:red]', 'text-red-500'],
// Promote data types to more specific utility if it exists

View File

@ -52,7 +52,7 @@ type DarkModeStrategy =
// Use the `class` strategy with a custom class instead of `.dark`.
| ['class', string]
// Use the `selector` strategy — same as `class` but uses `:where()` for more predicable behavior
// Use the `selector` strategy — same as `class` but uses `:where()` for more predictable behavior
| 'selector'
// Use the `selector` strategy with a custom selector instead of `.dark`.