2
0

Fix typo in example

This commit is contained in:
Jack Christensen
2021-12-11 14:55:02 -06:00
parent 7c5dbde59e
commit b2569172d8
+1 -1
View File
@@ -85,6 +85,6 @@ func main() {
log.Println("Starting URL shortener on localhost:8080")
err = http.ListenAndServe("localhost:8080", nil)
if err != nil {
log.Fatalln("Unable to start web server:" err)
log.Fatalln("Unable to start web server:", err)
}
}