Skip to content

Commit f6280ba

Browse files
Merge pull request #31 from yahma25/Translation-to-ko-playground-quick-fixes
Translate 1 file to ko - Quick Fixes
2 parents febe6b8 + 62bfce9 commit f6280ba

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// TypeScript는 흔한 실수에 대한
2+
// 빠른 수정 추천을 제공합니다.
3+
// 프롬프트는 이러한 추천에 따라 에디터에 나타납니다.
4+
5+
// 예를 들어 TypeScript는
6+
// 타입의 오탈자에 대한 빠른 수정을 제공합니다:
7+
8+
const eulersNumber = 2.7182818284;
9+
eulersNumber.toStrang();
10+
// ^______^ - 빛나는 전구 아이콘을 보기 위해 이것을 선택하세요
11+
12+
class ExampleClass {
13+
method() {
14+
this.notDeclared = 10;
15+
}
16+
}

0 commit comments

Comments
 (0)