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 e01d6b2 commit f7fb9e3Copy full SHA for f7fb9e3
docs/playground/ko/TypeScript/Language/Structural Typing.ts
@@ -36,7 +36,7 @@ let tube: Tube = { diameter: 12, length: 3 };
36
tube = ball;
37
ball = tube;
38
39
-// 공은 길이를 갖고 있지 않아서, 튜브 변수에 할당할 수 없습니다.
+// ball은 length를 갖고 있지 않아서, tube 변수에 할당할 수 없습니다.
40
// 하지만, Ball의 모든 멤버는
41
// 튜브 내부에 속하니 할당할 수 있습니다.
42
0 commit comments