Преглед изворни кода

Fixed some text in the readme

The code that was there didn't work. Now it does
Skuli Oskarsson пре 11 година
родитељ
комит
02dc17de4b
1 измењених фајлова са 2 додато и 2 уклоњено
  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)
     })
 }
 ```