Skip to content

Commit 64ec6cc

Browse files
committed
Change to another word for natural
1 parent 2484fb7 commit 64ec6cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/playground/ko/TypeScript/Meta-Types/Mapped Types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type MappedArtistForEdit = MyPartialType<Artist>;
3737

3838
// 완벽해 보이지만,
3939
// id 값이 null 이 되는 상황을 방지할 수 없습니다.
40-
// 그래서 교집합 타입을 사용하여 빠르게 하나를 개선해 봅시다.
40+
// 그래서 교차 타입을 사용하여 빠르게 하나를 개선해 봅시다.
4141
// (예시를 살펴보세요:union-and-intersection-types)
4242

4343
type MyPartialTypeForEdit<Type> = {

0 commit comments

Comments
 (0)