Skip to content

Commit 215c3d3

Browse files
committed
Fix the sentence natually
1 parent 57b1ae3 commit 215c3d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/playground/ko/JavaScript/Functions with JavaScript/Typing Functions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const callbackWithIndex = (callback: (i: number) => void) => {
2323
callback(i);
2424
};
2525

26-
// 함수 인터페이스를 임베딩하는 것은
27-
// 모든 화살표와 함께 읽기가 조금 어려울 수 있습니다.
26+
// 함수 인터페이스를 임베딩하면
27+
// 화살표 때문에 읽기 어려울 수 있습니다.
2828
// 타입 별칭을 사용하여 함수 매개변수에 이름을 지정하게 합니다.
2929

3030
type NumberCallback = (i: number) => void;

0 commit comments

Comments
 (0)