Skip to content

Commit 2227a74

Browse files
Revised some awkward expression.
1 parent 1e9ad76 commit 2227a74

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/documentation/ko/handbook-v2/Type Manipulation/Template Literal Types.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ TypeScript가 이를 알아내면 `on`메서드는 원래 객체에서 `firstNam
181181
182182
문자열의 각 문자를 대문자로 변환합니다.
183183
184-
##### 예제
184+
#### 예제
185185
186186
```ts twoslash
187187
type Greeting = "Hello, world"
@@ -197,7 +197,7 @@ type MainID = ASCIICacheKey<"my_app">
197197
198198
문자열의 각 문자를 소문자로 변환합니다.
199199
200-
##### 예제
200+
#### 예제
201201
202202
```ts twoslash
203203
type Greeting = "Hello, world"
@@ -213,7 +213,7 @@ type MainID = ASCIICacheKey<"MY_APP">
213213
214214
문자열의 첫 번째 문자를 대문자로 변환합니다.
215215
216-
##### 예제
216+
#### 예제
217217
218218
```ts twoslash
219219
type LowercaseGreeting = "hello, world";
@@ -225,7 +225,7 @@ type Greeting = Capitalize<LowercaseGreeting>;
225225
226226
문자열의 첫 번째 문자를 소문자로 변환합니다.
227227
228-
##### Example
228+
#### 예제
229229
230230
```ts twoslash
231231
type UppercaseGreeting = "HELLO WORLD";
@@ -250,4 +250,4 @@ function applyStringMapping(symbol: Symbol, str: string) {
250250
}
251251
return str;
252252
}</pre></code>
253-
</details>
253+
</details>

0 commit comments

Comments
 (0)