mirror of https://github.com/gin-gonic/gin.git
fix: description error (#2986)
This commit is contained in:
parent
7d189814cb
commit
fb5f045417
|
@ -109,6 +109,11 @@ People and companies, who have contributed, in alphabetical order.
|
|||
- Fix typo in comment
|
||||
|
||||
|
||||
**@jincheng9 (Jincheng Zhang)**
|
||||
- ★ support TSR when wildcard follows named param
|
||||
- Fix errors and typos in comments
|
||||
|
||||
|
||||
**@joiggama (Ignacio Galindo)**
|
||||
- Add utf-8 charset header on renders
|
||||
|
||||
|
|
2
gin.go
2
gin.go
|
@ -41,7 +41,7 @@ var defaultTrustedCIDRs = []*net.IPNet{
|
|||
// HandlerFunc defines the handler used by gin middleware as return value.
|
||||
type HandlerFunc func(*Context)
|
||||
|
||||
// HandlersChain defines a HandlerFunc array.
|
||||
// HandlersChain defines a HandlerFunc slice.
|
||||
type HandlersChain []HandlerFunc
|
||||
|
||||
// Last returns the last handler in the chain. i.e. the last handler is the main one.
|
||||
|
|
Loading…
Reference in New Issue