fix code typo

This commit is contained in:
Xargin 2017-03-15 15:18:24 +08:00
parent 304d92be00
commit 2c54595c80

View File

@ -7,7 +7,7 @@
```Go ```Go
resp, err := http.Get(url) resp, err := http.Get(url)
if err != nil{ if err != nil{
return nill, err return nil, err
} }
``` ```