Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
juno7803 committed Jun 18, 2024
1 parent 3466fb9 commit 3020b5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/dropRight.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { dropRight as dropRightToolkit } from 'es-toolkit';
import { dropRight as dropRightLodash } from 'lodash';

describe('dropRight', () => {
bench('es-toolki/dropRight', () => {
bench('es-toolkit/dropRight', () => {
dropRightToolkit([1, 2, 3, 4, 5, 6], 3);
});

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/partition.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { partition as partitionToolkit } from 'es-toolkit';
import { partition as partitionLodash } from 'lodash';

describe('partition', () => {
bench('es-toolkit/', () => {
bench('es-toolkit/partition', () => {
partitionToolkit([1, 2, 3, 4, 5], x => x < 3);
});

Expand Down

0 comments on commit 3020b5d

Please sign in to comment.