Fixes a minor typo, changes 'Listen and server on 0.0.0.0:8080' to 'Listen and serve on 0.0.0.0:8080'

This commit is contained in:
Joshua Loper 2015-02-08 14:43:41 -06:00
parent b1758d3bfa
commit 63503bf682
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func main() {
c.String(200, "pong") c.String(200, "pong")
}) })
// Listen and server on 0.0.0.0:8080 // Listen and serve on 0.0.0.0:8080
r.Run(":8080") r.Run(":8080")
} }
``` ```