Sfoglia il codice sorgente

Fixed some text in the readme

The code that was there didn't work. Now it does
Skuli Oskarsson 11 anni fa
parent
commit
02dc17de4b
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -208,8 +208,8 @@ func main() {
     r := gin.Default()
     r := gin.Default()
     r.LoadHTMLTemplates("templates/*")
     r.LoadHTMLTemplates("templates/*")
     r.GET("index", func(c *gin.Context) {
     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)
     })
     })
 }
 }
 ```
 ```