📝 Improve grammar

[ci skip]
This commit is contained in:
Plusb Preco
2016-10-12 12:23:11 +09:00
parent 774a15f4c8
commit af79f4793e
10 changed files with 19 additions and 19 deletions

View File

@@ -13,7 +13,7 @@ Node의 버전과 전혀 다른 V8 버전을 사용하고 있을 가능성이
몇 가지 환경 변수를 설치하는 것으로, 직접적으로 `npm`을 모듈을 설치하는데 사용할 수
있습니다.
다음 예시는 Electron에 대한 모든 종속성을 설치하는 예시입니다:
다음 예시는 Electron에 대한 모든 의존성을 설치하는 예시입니다:
```bash
# Electron의 버전.
@@ -27,7 +27,7 @@ export npm_config_disturl=https://atom.io/download/atom-shell
export npm_config_runtime=electron
# node-pre-gyp에 소스 코드로부터 모듈을 빌드한다는 것을 알려줍니다.
export npm_config_build_from_source=true
# 모든 종속성을 설치하고 캐시를 ~/.electron-gyp에 저장합니다.
# 모든 의존성을 설치하고 캐시를 ~/.electron-gyp에 저장합니다.
HOME=~/.electron-gyp npm install
```