From ed8f143427bcf35842d56b5b804ffc4d61a824be Mon Sep 17 00:00:00 2001 From: Plusb Preco Date: Thu, 27 Aug 2015 09:06:12 +0900 Subject: [PATCH] Fix IMPORTANT Typos and update as upstream --- .../ko/development/build-instructions-windows.md | 2 +- docs-translations/ko/tutorial/quick-start.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs-translations/ko/development/build-instructions-windows.md b/docs-translations/ko/development/build-instructions-windows.md index eb1283e7c4b..06c2349b3d9 100644 --- a/docs-translations/ko/development/build-instructions-windows.md +++ b/docs-translations/ko/development/build-instructions-windows.md @@ -46,7 +46,7 @@ python script\build.py python script\build.py -c D ``` -빌드가 모두 끝나면 `out/D` 디렉터리에서 `atom.exe` 실행 파일을 찾을 수 있습니다. +빌드가 모두 끝나면 `out/D` (디버그 타겟) 또는 `out/R` (릴리즈 타겟) 디렉터리에서 `electron.exe` 실행 파일을 찾을 수 있습니다. ## 64비트 빌드 diff --git a/docs-translations/ko/tutorial/quick-start.md b/docs-translations/ko/tutorial/quick-start.md index 7564f1c8c4c..963ebca4dac 100644 --- a/docs-translations/ko/tutorial/quick-start.md +++ b/docs-translations/ko/tutorial/quick-start.md @@ -59,7 +59,9 @@ your-app/ } ``` -`main.js`에서 창을 만들거나 시스템 이벤트를 처리할 수 있습니다. 대표적인 예제로 다음과 같이 작성할 수 있습니다: +__알림__: 만약 `main` 필드가 `package.json`에 설정되어 있지 않으면 Electron은 자동으로 같은 디렉터리의 `index.js`를 로드합니다. + +반드시 `main.js`에서 창을 만들고 시스템 이밴트를 처리해야합니다. 대표적인 예제로 다음과 같이 작성할 수 있습니다: ```javascript var app = require('app'); // 어플리케이션 기반을 조작 하는 모듈.