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 6649f65 commit 49aec7aCopy full SHA for 49aec7a
docs/playground/ko/JavaScript/Working With Classes/Classes 101.ts
@@ -49,7 +49,7 @@ class FoodTruck extends Vendor {
49
const nameOnlyTruck = new FoodTruck("Salome's Adobo");
50
51
// 매개변수 2개를 정확하게 전달하면
52
-// FoodTruck의 새로운 인스턴스를 생성할 수 있음:
+// FoodTruck의 새로운 인스턴스를 생성할 수 있습니다:
53
54
const truck = new FoodTruck("Dave's Doritos", "junk");
55
console.log(truck.greet());
0 commit comments