Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andreogle committed Oct 18, 2023
1 parent 79d1853 commit c1cd178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/strings.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe(toUpperSnakeCase.name, () => {
expect(result).toEqual('HELLO_WORLD_4');
});

test('trims leading and trailing whtestespaces', () => {
test('trims leading and trailing whitespaces', () => {
const result = toUpperSnakeCase(' hello world ');
expect(result).toEqual('HELLO_WORLD');
});
Expand Down

0 comments on commit c1cd178

Please sign in to comment.