Skip to content

Commit 9ea76c3

Browse files
authored
번역 완료된 문서 Summary 수정 및 오타 수정 (#190)
* 버그 수정 * add Configuring-watch.md to Sumamry.md
1 parent 8e7bab3 commit 9ea76c3

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

SUMMARY.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
## 시작하기
66

7-
* [TS for the New Programmer(en)](pages/tutorials/ts-for-the-new-programmer.md)
8-
* [TS for JS Programmers(en)](pages/tutorials/ts-for-js-programmers.md)
7+
* [TS for the New Programmer](pages/tutorials/ts-for-the-new-programmer.md)
8+
* [TS for JS Programmers](pages/tutorials/ts-for-js-programmers.md)
99
* [TS for OOP Programmers(en)](pages/tutorials/ts-for-oopers.md)
10-
* [TS for Functional Programmers(en)](pages/tutorials/ts-for-functional-programmers.md)
10+
* [TS for Functional Programmers](pages/tutorials/ts-for-functional-programmers.md)
1111
* [5분 안에 보는 TypeScript](pages/tutorials/typescript-in-5-minutes.md)
1212

1313
## 핸드북
@@ -16,8 +16,8 @@
1616
* [기본 타입](pages/basic-types.md)
1717
* [인터페이스](pages/interfaces.md)
1818
* [함수](pages/functions.md)
19-
* [리터럴 타입(en)](pages/literal-types.md)
20-
* [유니언과 교차 타입(en)](pages/unions-and-intersections.md)
19+
* [리터럴 타입](pages/literal-types.md)
20+
* [유니언과 교차 타입](pages/unions-and-intersections.md)
2121
* [클래스](pages/classes.md)
2222
* [열거형](pages/enums.md)
2323
* [제네릭](pages/generics.md)
@@ -47,7 +47,7 @@
4747
* [ASP.NET Core](pages/tutorials/asp.net-core.md)
4848
* [걸프](pages/tutorials/gulp.md)
4949
* [JavaScript에서 마이그레이션](pages/tutorials/migrating-from-javascript.md)
50-
* [TypeScript와 Babel 사용하기(en)](pages/tutorials/babel-with-typescript.md)
50+
* [TypeScript와 Babel 사용하기](pages/tutorials/babel-with-typescript.md)
5151
* [리액트 & 웹팩](pages/tutorials/react-&-webpack.md)
5252

5353
## 릴리즈 노트
@@ -76,10 +76,10 @@
7676

7777
## 자바스크립트
7878

79-
* [JavaScript에 TypeScript 적용하기(en)](pages/intro-to-js-with-ts.md)
79+
* [JavaScript에 TypeScript 적용하기](pages/intro-to-js-with-ts.md)
8080
* [JavaScript 파일 타입 검사](pages/type-checking-javaScript-files.md)
8181
* [JSDoc 레퍼런스(en)](pages/jsdoc-reference.md)
82-
* [.js 파일에서 d.ts 파일 만들기(en)](pages/declaration-files/creating-dts-files-from-js.md)
82+
* [.js 파일에서 d.ts 파일 만들기](pages/declaration-files/creating-dts-files-from-js.md)
8383

8484
## 프로젝트 환경설정
8585

@@ -88,6 +88,6 @@
8888
* [프로젝트 레퍼런스](pages/project-references.md)
8989
* [MSBuild에서의 컴파일러 옵션](pages/compiler-options-in-msbuild.md)
9090
* [빌드 도구와 통합](pages/integrating-with-build-tools.md)
91-
* [configuring-watch (en)](pages/configuring-watch.md)
91+
* [configuring-watch](pages/configuring-watch.md)
9292
* [Nightly 빌드](pages/nightly-builds.md)
9393

pages/tutorials/ts-for-js-programmers.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ JavaScript는 이미 `string`, `number`, `object`, `undefined` 같은 원시 타
1919
TypeScript는 JavaScript 언어를 알고 있으며 대부분의 경우 타입을 생성해줄 것입니다.
2020
예를 들어 변수를 생성하면서 동시에 특정 값에 할당하는 경우, TypeScript는 그 값을 해당 변수의 타입으로 사용할 것입니다.
2121

22-
```ts twoslash
22+
```ts
2323
let helloWorld = "Hello World";
2424
// ^?
2525
```
@@ -35,7 +35,7 @@ JavaScript는 다양한 디자인 패턴을 가능하게 하는 동적 언어입
3535

3636
다음은 `name: string``id: number`을 포함하는 추론 타입을 가진 객체를 생성하는 예제입니다.
3737

38-
```ts twoslash
38+
```ts
3939
const user = {
4040
name: "Hayes",
4141
id: 0,
@@ -44,7 +44,7 @@ const user = {
4444

4545
이 객체의 형태를 명시적으로 나타내기 위해서는 `interface` 로 선언합니다.
4646

47-
```ts twoslash
47+
```ts
4848
interface User {
4949
name: string;
5050
id: number;
@@ -53,7 +53,7 @@ interface User {
5353

5454
이제 변수 선언 뒤에 `: TypeName`의 구문을 사용해 JavaScript 객체가 새로운 `interface`의 형태를 따르고 있음을 선언할 수 있습니다.
5555

56-
```ts twoslash
56+
```ts
5757
interface User {
5858
name: string;
5959
id: number;
@@ -67,7 +67,7 @@ const user: User = {
6767

6868
해당 인터페이스에 맞지 않는 객체를 생성하면 TypeScript는 경고를 줍니다.
6969

70-
```ts twoslash
70+
```ts
7171
// @errors: 2322
7272
interface User {
7373
name: string;
@@ -82,7 +82,7 @@ const user: User = {
8282

8383
JavaScript는 클래스와 객체 지향 프로그래밍을 지원하기 때문에, TypeScript 또한 동일합니다. - 인터페이스는 클래스로도 선언할 수 있습니다.
8484

85-
```ts twoslash
85+
```ts
8686
interface User {
8787
name: string;
8888
id: number;
@@ -103,7 +103,7 @@ const user: User = new UserAccount("Murphy", 1);
103103

104104
인터페이스는 함수에서 매개변수와 리턴 값을 명시하는데 사용되기도 합니다.
105105

106-
```ts twoslash
106+
```ts
107107
// @noErrors
108108
interface User {
109109
name: string;

pages/unions-and-intersections.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,4 +303,4 @@ function extend<First extends {}, Second extends {}>(
303303

304304
const jim = extend(new Person("Jim"), ConsoleLogger.prototype);
305305
jim.log(jim.name);
306-
```-
306+
```

0 commit comments

Comments
 (0)