Skip to content

Commit

Permalink
docs: README 파일에 있는 chosungIncludes 예시의 결과 추가 (#105)
Browse files Browse the repository at this point in the history
* docs: README 파일에 있는 chosungIncludes 예시의 결과 추가

* docs: 세미콜론 추가

* docs: update README exmple of chosungIncludes
  • Loading branch information
Collection50 committed May 26, 2024
1 parent 56fa610 commit 0cd45e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README-en_us.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { chosungIncludes } from 'es-hangul';
const searchWord = '라면';
const userInput = 'ㄹㅁ';

const result = chosungIncludes(searchWord, userInput);
const result = chosungIncludes(searchWord, userInput); // true
```

```tsx
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { chosungIncludes } from 'es-hangul';
const searchWord = '라면';
const userInput = 'ㄹㅁ';

const result = chosungIncludes(searchWord, userInput);
const result = chosungIncludes(searchWord, userInput); // true
```

```tsx
Expand Down

0 comments on commit 0cd45e4

Please sign in to comment.