Fix HTML form binding example typo

This commit is contained in:
Kel Cecil 2014-10-27 20:46:23 -04:00
parent aa7b00a083
commit eaefeeb0fd
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ func main() {
} }
}) })
// Example for binding a HTLM form (user=manu&password=123) // Example for binding a HTML form (user=manu&password=123)
r.POST("/login", func(c *gin.Context) { r.POST("/login", func(c *gin.Context) {
var form LoginForm var form LoginForm