fix code typo

pull/20/head
Xargin 2017-03-15 15:18:24 +08:00
parent 304d92be00
commit 2c54595c80
1 changed files with 1 additions and 1 deletions

View File

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