Skip to content

Commit 4a4b642

Browse files
committed
fix typo
1 parent c83d029 commit 4a4b642

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
let propertiesWitouthUnits
1+
let propertiesWithoutUnits
22
if (process.env.NODE_ENV !== 'production') {
3-
propertiesWitouthUnits = [
3+
propertiesWithoutUnits = [
44
'aspectRatio',
55
'elevation',
66
'flexGrow',
@@ -12,8 +12,8 @@ if (process.env.NODE_ENV !== 'production') {
1212
}
1313

1414
const devPropertiesWithUnitsRegExp =
15-
propertiesWitouthUnits != null
16-
? new RegExp(propertiesWitouthUnits.join('|'))
15+
propertiesWithoutUnits != null
16+
? new RegExp(propertiesWithoutUnits.join('|'))
1717
: null
1818

1919
export default devPropertiesWithUnitsRegExp

0 commit comments

Comments
 (0)