Skip to content

Commit

Permalink
Merge pull request #217 from yusunghyun/fix-typo-in-ko
Browse files Browse the repository at this point in the history
Co-authored-by: dvlprsh <dvlprsh@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and dvlprsh authored Jun 6, 2023
2 parents df4a6d5 + 9d86fb2 commit 8d7697f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/documentation/ko/handbook-v2/More on Functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function minimumLength<Type extends { length: number }>(
}
```

이 함수는 문제가 없는 것처럼 보입니다. `Type``{ lenght: number }`로 제한되어 있고, 함수는 `Type`이나 저 제약조건을 만족하는 값을 반환합니다.
이 함수는 문제가 없는 것처럼 보입니다. `Type``{ length: number }`로 제한되어 있고, 함수는 `Type`이나 저 제약조건을 만족하는 값을 반환합니다.
문제는 이 함수가 제약사항을 만족하는 _어떤_ 객체가 아닌, 입력된 _어떤_ 객체를 반환한다는 점입니다.
만약 이 코드가 유효하다면, 여러분들은 확실히 동작하지 않을 아래의 코드를 작성할 수 있을 것입니다.

Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/ko/project-config/Project References.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ B C

# TypeScript를 위한 빌드 모드 (Build Mode for TypeScript)

오래 기다린 기능은 TypeScirpt 프로젝트를 위한 똑똑한 증분 빌드입니다.
오래 기다린 기능은 TypeScript 프로젝트를 위한 똑똑한 증분 빌드입니다.
3.0에서 `tsc`에서 `--build` 플래그를 사용할 수 있게 되었습니다.
이것은 단순한 컴파일러보다 빌드 관리자처럼 동작하는 `tsc`의 새로운 진입점입니다.

Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/ko/reference/Modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ x(y);
### 와일드카드 모듈 선언 (Wildcard module declarations)

[SystemJS](https://github.com/systemjs/systemjs/blob/master/docs/overview.md#plugin-syntax)
[AMD](https://github.com/amdjs/amdjs-api/blob/master/LoaderPlugins.md)와 같은 모듈 로더는 비-JavaScirpt 내용을 import 할 수 있습니다.
[AMD](https://github.com/amdjs/amdjs-api/blob/master/LoaderPlugins.md)와 같은 모듈 로더는 비-JavaScript 내용을 import 할 수 있습니다.
이 둘은 일반적으로 접두사 또는 접미사를 사용하여 특수한 로딩 의미를 표시합니다.
이러한 경우를 다루기 위해 와일드카드 모듈 선언을 사용할 수 있습니다.

Expand Down

0 comments on commit 8d7697f

Please sign in to comment.