docs(engine): fix comments for the With (#3955)

Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com>
This commit is contained in:
Flc゛ 2024-05-08 05:29:54 +08:00 committed by GitHub
parent 490accf5d7
commit e60113dc95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
gin.go
View File

@ -316,7 +316,7 @@ func (engine *Engine) Use(middleware ...HandlerFunc) IRoutes {
return engine
}
// With returns a new Engine instance with the provided options.
// With returns a Engine with the configuration set in the OptionFunc.
func (engine *Engine) With(opts ...OptionFunc) *Engine {
for _, opt := range opts {
opt(engine)