소스 검색

Merge pull request #141 from kelcecil/readme-typo

Fix HTML form binding example typo
Javier Provecho Fernandez 11 년 전
부모
커밋
79c66136e0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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