Commit be075877 by shingt

Fix typo

1 parent 6ece5141
Showing with 1 additions and 1 deletions
...@@ -40,7 +40,7 @@ func (app *App) Run() error { ...@@ -40,7 +40,7 @@ func (app *App) Run() error {
http.HandleFunc("/ws", app.generateHandler()) http.HandleFunc("/ws", app.generateHandler())
url := app.Address + ":" + app.Port url := app.Address + ":" + app.Port
log.Printf("Sever is running at %s, command: %s", url, strings.Join(app.Command, " ")) log.Printf("Server is running at %s, command: %s", url, strings.Join(app.Command, " "))
err := http.ListenAndServe(url, nil) err := http.ListenAndServe(url, nil)
if err != nil { if err != nil {
return err return err
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!