Update README.md
This commit is contained in:
		@ -146,7 +146,7 @@ func main() {
 | 
				
			|||||||
func main() {
 | 
					func main() {
 | 
				
			||||||
	r := gin.Default()
 | 
						r := gin.Default()
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	// Query string parameters are parsed used the existing underlying request object.  
 | 
						// Query string parameters are parsed using the existing underlying request object.  
 | 
				
			||||||
	// The request responds to a url matching:  /search?firstname=Jane&lastname=Doe
 | 
						// The request responds to a url matching:  /search?firstname=Jane&lastname=Doe
 | 
				
			||||||
	r.GET("/search", func(c *gin.Context) {
 | 
						r.GET("/search", func(c *gin.Context) {
 | 
				
			||||||
		firstname := c.Request.URL.Query().Get("firstname")
 | 
							firstname := c.Request.URL.Query().Get("firstname")
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user