Skip to content

Fix typo #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pages/tutorials/TypeScript in 5 minutes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TypeScript를 설치하는 방법은 크게 두가지입니다:
- TypeScript의 Visual Studio 플러그인 설치

Visual Studio 2017 및 Visual Studio 2015 Update 3에는 기본적으로 TypeScript가 포함되어 있습니다.
Visual Studio와 함꼐 TypeScript를 설치하지 않았다면 [다운로드](#download-links)할 수 있습니다.
Visual Studio와 함께 TypeScript를 설치하지 않았다면 [다운로드](#download-links)할 수 있습니다.

NPM 사용자의 경우:

Expand Down Expand Up @@ -41,7 +41,7 @@ document.body.innerHTML = greeter(user);
tsc greeter.ts
```

결과는 동일한 자바스크립트를 포함하고있는 `gretter.js` 파일이 될 것입니다.
결과는 동일한 자바스크립트를 포함하고있는 `greeter.js` 파일이 될 것입니다.
JavaScript 애플리케이션에서 TypeScript를 실행 중입니다!

이제 TypeScript가 제공하는 새로운 기능들을 활용할 수 있습니다.
Expand Down Expand Up @@ -79,7 +79,7 @@ document.body.innerHTML = greeter(user);
error TS2345: Argument of type 'number[]' is not assignable to parameter of type 'string'.
```

마찬가지로, gretter를 호출할 때 모든 인수를 제거해보십시오.
마찬가지로, greeter를 호출할 때 모든 인수를 제거해보십시오.
TypeScript는 예상치 못한 매개변수로 함수를 호출했다는 것을 알려줍니다.
두 경우 모두 TypeScript는 코드 구조와 사용자가 제공한 타입 어노테이션을 기반으로 정적 분석을 제공할 수 있습니다.

Expand Down