Browse Source

babel: fix Korean translation (#6791)

Kevin Lee 3 years ago
parent
commit
20dd08635d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      pages.ko/common/babel.md

+ 4 - 4
pages.ko/common/babel.md

@@ -1,6 +1,6 @@
 # babel
 
-> 코드를 JavaScript ES6/ES7문법에서 ES5문법으로 변환하는 변환기입니다.
+> 코드를 JavaScript ES6/ES7 문법에서 ES5 문법으로 변환하는 변환기입니다.
 > 더 많은 정보: <https://babeljs.io/>.
 
 - 지정된 입력 파일을 변환하고 `stdout'으로 출력:
@@ -11,7 +11,7 @@
 
 `babel {{path/to/input_file}} --out-file {{path/to/output_file}}`
 
-- 입력 파일이 변경 될 때마다 변환:
+- 입력 파일이 변경될 때마다 변환:
 
 `babel {{path/to/input_file}} --watch`
 
@@ -19,11 +19,11 @@
 
 `babel {{path/to/input_directory}}`
 
-- 디렉토리에서 지정된 쉼표로 구분 된 파일 무시:
+- 디렉토리에서 지정된 쉼표로 구분된 파일 무시:
 
 `babel {{path/to/input_directory}} --ignore {{ignored_files}}`
 
-- 축소 된 JavaScript로 변환 및 출력:
+- 축소된 JavaScript로 변환 및 출력:
 
 `babel {{path/to/input_file}} --minified`