Update README.md

This commit is contained in:
yuyabe 2014-08-19 01:38:03 -07:00
parent c3abaf9afc
commit f39b692fc5
1 changed files with 2 additions and 2 deletions

View File

@ -392,7 +392,7 @@ func main() {
time.Sleep(5 * time.Second)
// note than you are using the copied context "c_cp", IMPORTANT
log.Println("Done! in path " + c_cp.Req.URL.Path)
log.Println("Done! in path " + c_cp.Request.URL.Path)
}()
})
@ -402,7 +402,7 @@ func main() {
time.Sleep(5 * time.Second)
// since we are NOT using a goroutine, we do not have to copy the context
log.Println("Done! in path " + c.Req.URL.Path)
log.Println("Done! in path " + c.Request.URL.Path)
})
// Listen and server on 0.0.0.0:8080