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

FIX r.LoadHTMLGlob("/path/to/templates")) to r.LoadHTMLGlob("/path/to/templates")
This commit is contained in:
forging2012 2018-10-31 11:16:15 +08:00 committed by GitHub
parent c65e5efc9a
commit 2bb1de9fec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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