From b060a5f409b8d3d24bf547cc737d688743fd8810 Mon Sep 17 00:00:00 2001 From: Eason Lin Date: Sat, 8 Jul 2017 16:16:59 +0800 Subject: [PATCH] docs(readme): fix code link (#989) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4117769..eda1dd7 100644 --- a/README.md +++ b/README.md @@ -471,7 +471,7 @@ func startPage(c *gin.Context) { var person Person // If `GET`, only `Form` binding engine (`query`) used. // If `POST`, first checks the `content-type` for `JSON` or `XML`, then uses `Form` (`form-data`). - // See more at https://github.com/gin-gonic/gin/blob/develop/binding/binding.go#L45 + // See more at https://github.com/gin-gonic/gin/blob/master/binding/binding.go#L48 if c.Bind(&person) == nil { log.Println(person.Name) log.Println(person.Address)