Ver código fonte

Merge pull request #5 from SkuliOskarsson/patch-1

Fixed some text in the readme
Manu Mtz.-Almeida 11 anos atrás
pai
commit
90ae97f970
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -208,8 +208,8 @@ func main() {
     r := gin.Default()
     r.LoadHTMLTemplates("templates/*")
     r.GET("index", func(c *gin.Context) {
-        obj := gin.h{"title": "Main website"}
-        c.HTML(200, "templates/index.tmpl", obj)
+        obj := gin.H{"title": "Main website"}
+        c.HTML(200, "index.tmpl", obj)
     })
 }
 ```