Skip to content

Commit 392dce9

Browse files
committed
adjust comments
1 parent e5fd079 commit 392dce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tailwindcss/src/utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4604,7 +4604,7 @@ export function createCssUtility(node: AtRule) {
46044604
// removed.
46054605
// - If a `--value(ratio)` resolves, the `--modifier(…)` cannot be used.
46064606
// - If a candidate looks like `foo-2/3`, then the `--value(ratio)` should
4607-
// be used OR the `--value(…)` and `--modifier(:)` must be used. But not
4607+
// be used OR the `--value(…)` and `--modifier()` must be used. But not
46084608
// both.
46094609
// - All parts of the candidate must resolve, otherwise it's not a valid
46104610
// utility. E.g.:`
@@ -4883,7 +4883,7 @@ function resolveValueFunction(
48834883
return { nodes: ValueParser.parse(value.value) }
48844884
}
48854885

4886-
// No data type hitn provided, so we have to infer it
4886+
// No data type hint provided, so we have to infer it
48874887
let type = inferDataType(value.value, [dataType as any])
48884888
if (type !== null) {
48894889
return { nodes: ValueParser.parse(value.value) }

0 commit comments

Comments
 (0)