Skip to content

Commit

Permalink
docs: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Sketon committed Sep 25, 2024
1 parent dd15fb1 commit 59e823b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/ja/reference/array/forEachRight.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function forEachRight<T>(arr: T[], callback: (value: T, index: number, arr: T[])
##

```ts
import { forEachRight } from 'es-toolkit/forEachRight';
import { forEachRight } from 'es-toolkit/array';

const array = [1, 2, 3];
const result: number[] = [];
Expand Down
2 changes: 1 addition & 1 deletion docs/ko/reference/array/forEachRight.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function forEachRight<T>(arr: T[], callback: (value: T, index: number, arr: T[])
## 예시

```ts
import { forEachRight } from 'es-toolkit/forEachRight';
import { forEachRight } from 'es-toolkit/array';

const array = [1, 2, 3];
const result: number[] = [];
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/array/forEachRight.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function forEachRight<T>(arr: T[], callback: (value: T, index: number, arr: T[])
## Examples

```ts
import { forEachRight } from 'es-toolkit/forEachRight';
import { forEachRight } from 'es-toolkit/array';

const array = [1, 2, 3];
const result: number[] = [];
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_hans/reference/array/forEachRight.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function forEachRight<T>(arr: T[], callback: (value: T, index: number, arr: T[])
## 示例

```ts
import { forEachRight } from 'es-toolkit/forEachRight';
import { forEachRight } from 'es-toolkit/array';

const array = [1, 2, 3];
const result: number[] = [];
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_hans/reference/compat/function/rearg.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function rearg<F extends (...args: any[]) => any>(
## 示例

```typescript
import { rearg } from 'es-toolkit/function';
import { rearg } from 'es-toolkit/compat';

const rearged = rearg(
function (a, b, c) {
Expand Down

0 comments on commit 59e823b

Please sign in to comment.