Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: acronymizeHangul 리턴 타입 표기 수정 #161

Merged
merged 1 commit into from
Jul 3, 2024
Merged
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
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