Skip to content

Commit f801379

Browse files
committed
Fix as a correct grammar
1 parent ab7c10a commit f801379

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/playground/ko/TypeScript/Type Primitives/Built-in Utility Types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//// { order: 3, compiler: { strictNullChecks: true } }
22

3-
// 대부분의 코드에서 특정한 타입이 유용하다고 느낄 때,
3+
// 대부분 코드에서 특정한 타입이 유용하다고 느낄 때,
44
// TypeScript에 추가해서
55
// 누구나 사용할 수 있게 하여
6-
// 가용성을 지속적으로 의존할 수 있습니다
6+
// 가용성을 지속해서 의존할 수 있습니다
77

88
// Partial<Type>
99

@@ -73,7 +73,7 @@ type HomeNavigationPages = Exclude<NavigationPages, "home">;
7373

7474
// Extract<Type, MatchUnion>
7575

76-
// MatchUnion하고 겹칠 경우 포함되는
76+
// MatchUnion하고 겹칠 포함되는
7777
// Type 프로퍼티의 모든 프로퍼티 타입을 만드세요.
7878

7979
type DynamicPages = Extract<NavigationPages, "home" | "stickers">;
@@ -114,7 +114,7 @@ type AccessiblePageInfo = Required<PageInfo>;
114114
// ThisType<Type>
115115

116116
// 다른 타입과 다르게, ThisType은 새로운 타입을 반환하지 않는 대신에
117-
// 함수의 내부의 this의 정의를 조작합니다.
117+
// 함수의 내부 this의 정의를 조작합니다.
118118
// TSConfig에서 noImplicitThis를 실행시켰을 때
119119
// ThisType만 사용할 수 있습니다.
120120

0 commit comments

Comments
 (0)