Fix README.md example code (#1231)

r -> router
This commit is contained in:
Kevin Zhu 2018-01-23 10:07:33 +08:00 committed by Bo-Yi Wu
parent a712f77d7a
commit 8a6792d516
1 changed files with 1 additions and 1 deletions

View File

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