docs(engine): fix comments for the With (#3955)
				
					
				
			Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com>
This commit is contained in:
		
							
								
								
									
										2
									
								
								gin.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gin.go
									
									
									
									
									
								
							@ -316,7 +316,7 @@ func (engine *Engine) Use(middleware ...HandlerFunc) IRoutes {
 | 
				
			|||||||
	return engine
 | 
						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 {
 | 
					func (engine *Engine) With(opts ...OptionFunc) *Engine {
 | 
				
			||||||
	for _, opt := range opts {
 | 
						for _, opt := range opts {
 | 
				
			||||||
		opt(engine)
 | 
							opt(engine)
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user