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 3a3d633 commit f04bdbfCopy full SHA for f04bdbf
docs/playground/ko/TypeScript/Language/Structural Typing.ts
@@ -81,5 +81,5 @@ let createRedBall = (diameter: number) => ({ diameter, color: "red" });
81
createBall = createRedBall;
82
createRedBall = createBall;
83
84
-// 첫 번째 할당은 동작하지만 (둘 다 지름이 있음),
+// 첫 번째 할당은 동작하지만 (둘 다 diameter가 있음),
85
// 두 번째는 동작하지 않습니다. (공은 색상이 없음)
0 commit comments