Browse Source

Merge pull request #141 from kelcecil/readme-typo

Fix HTML form binding example typo
Javier Provecho Fernandez 11 years ago
parent
commit
79c66136e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -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) {
         var form LoginForm