Fix README.md example code

r -> router
This commit is contained in:
Kevin Zhu 2018-01-17 17:31:12 +08:00 committed by GitHub
parent a712f77d7a
commit 6bc33093e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -435,7 +435,7 @@ func main() {
c.String(200, "pong")
})
r.Run(":8080")
   router.Run(":8080")
}
```