Skip to content

Commit

Permalink
docs: acronymizeHangul 리턴 타입 표기 수정 (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
2wheeh committed Jul 3, 2024
1 parent aaddf6f commit 794f499
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/docs/api/acronymizeHangul.en.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ It receives the Korean sentence and returns the first letter of that Korean sent
function acronymizeHangul(
// String consisting of plural nouns (e.g. '버스 충전', '치킨과 맥주')
hangul: string
): boolean;
): string[];
```

```typescript
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/docs/api/acronymizeHangul.ko.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
function acronymizeHangul(
// 복수 명사로 이루어진 문자열 (e.g. '버스 충전', '치킨과 맥주')
hangul: string
): boolean;
): string[];
```

```typescript
Expand Down

0 comments on commit 794f499

Please sign in to comment.