Skip to content

Commit

Permalink
docs: 영문과 한글이 일치하지 않는 문제 수정 (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaeWooKKang authored Sep 5, 2024
1 parent 9d2699d commit 6d684b6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README-en_us.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ const userInput = 'ㄹㅁ';

const result = getChoseong(searchWord); // ㄹㅁ

// Check if the 'choseong' of the search word match the user input
if (result === userInput) {
// do something
something()
}
```

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ const userInput = 'ㄹㅁ';

const result = getChoseong(searchWord); // ㄹㅁ

// 검색어의 초성과 사용자 입력 초성이 일치하는지 확인
if (result === userInput) {
// 일치한다면 if문이 실행
something()
}
```

Expand Down
3 changes: 2 additions & 1 deletion docs/src/pages/docs/introduction.en.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ const userInput = 'ㄹㅁ';

const result = getChoseong(searchWord); // ㄹㅁ

// Check if the 'choseong' of the search word match the user input
if (result === userInput) {
// do something
something()
}
```

Expand Down
3 changes: 2 additions & 1 deletion docs/src/pages/docs/introduction.ko.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ const userInput = 'ㄹㅁ';

const result = getChoseong(searchWord); // ㄹㅁ

// 검색어의 초성과 사용자 입력 초성이 일치하는지 확인
if (result === userInput) {
// 일치한다면 if문이 실행
something()
}
```

Expand Down
3 changes: 2 additions & 1 deletion docs/src/pages/index.en.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ const userInput = 'ㄹㅁ';

const result = getChoseong(searchWord); // ㄹㅁ

// Check if the 'choseong' of the search word match the user input
if(result === userInput){
// do something
something()
}
```

Expand Down
3 changes: 2 additions & 1 deletion docs/src/pages/index.ko.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ const userInput = 'ㄹㅁ';

const result = getChoseong(searchWord); // ㄹㅁ

// 검색어의 초성과 사용자 입력 초성이 일치하는지 확인
if(result === userInput){
// 일치한다면 if문이 실행
something()
}
```

Expand Down

0 comments on commit 6d684b6

Please sign in to comment.