Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -3385,7 +3385,7 @@ describe('@stylexjs/babel-plugin', () => {
`);
});

test('hoisting correctly with duplicte names', () => {
test('hoisting correctly with duplicate names', () => {
expect(
transform(
`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ function evaluateObjKey(
} else if (keyPath.isIdentifier()) {
key = keyPath.node.name;
} else {
// TODO: This is'nt handling all possible types that `keyPath` could be
// TODO: This isn't handling all possible types that `keyPath` could be
key = (keyPath.node as $FlowFixMe).value;
}
return {
Expand Down