We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2484fb7 commit 64ec6ccCopy full SHA for 64ec6cc
docs/playground/ko/TypeScript/Meta-Types/Mapped Types.ts
@@ -37,7 +37,7 @@ type MappedArtistForEdit = MyPartialType<Artist>;
37
38
// 완벽해 보이지만,
39
// id 값이 null 이 되는 상황을 방지할 수 없습니다.
40
-// 그래서 교집합 타입을 사용하여 빠르게 하나를 개선해 봅시다.
+// 그래서 교차 타입을 사용하여 빠르게 하나를 개선해 봅시다.
41
// (예시를 살펴보세요:union-and-intersection-types)
42
43
type MyPartialTypeForEdit<Type> = {
0 commit comments