Explorar o código

Add space after commas in command list (#1307)

Fernando Chu %!s(int64=4) %!d(string=hai) anos
pai
achega
4a996fd3b9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 = {