소스 검색

Blank line?

Artur Paikin 9 년 전
부모
커밋
ec529a2c93
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      src/core/Core.js

+ 2 - 3
src/core/Core.js

@@ -62,8 +62,8 @@ export default class Core {
 /**
  * Runs all plugins of the same type in parallel
  *
- * @param {String} type that wants to set progress
- * @param {Array} files
+ * @param {string} type that wants to set progress
+ * @param {array} files
  * @return {Promise} of all methods
  */
   runType (type, files) {
@@ -75,7 +75,6 @@ export default class Core {
       .catch((error) => console.error(error))
   }
 
-
 /**
  * Runs a waterfall of runType plugin packs, like so:
  * All preseters(data) --> All selecters(data) --> All uploaders(data) --> done