소스 검색

Add space after commas in command list (#1307)

Fernando Chu 4 년 전
부모
커밋
4a996fd3b9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cli/tauri.js/bin/tauri.js

+ 1 - 1
cli/tauri.js/bin/tauri.js

@@ -63,7 +63,7 @@ const tauri = function (command) {
       require(`./tauri-${command}`)
     }
   } else {
-    console.log(`Invalid command ${command}. Use one of ${cmds.join(',')}.`)
+    console.log(`Invalid command ${command}. Use one of ${cmds.join(', ')}.`)
   }
 }
 module.exports = {