FIX r.LoadHTMLGlob("/path/to/templates") (#1616)

FIX r.LoadHTMLGlob("/path/to/templates")) to r.LoadHTMLGlob("/path/to/templates")
This commit is contained in:
forging2012 2018-10-31 20:19:58 +08:00 committed by thinkerou
parent c65e5efc9a
commit 8e9619767c
1 changed files with 1 additions and 1 deletions

View File

@ -1160,7 +1160,7 @@ You may use custom delims
```go ```go
r := gin.Default() r := gin.Default()
r.Delims("{[{", "}]}") r.Delims("{[{", "}]}")
r.LoadHTMLGlob("/path/to/templates")) r.LoadHTMLGlob("/path/to/templates")
``` ```
#### Custom Template Funcs #### Custom Template Funcs