Browse Source

Update README.md

Justin Beckwith 10 years ago
parent
commit
f8d34ac8b6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -149,8 +149,8 @@ func main() {
 	// Query string parameters are parsed used the existing underlying request object.  
 	// The request responds to a url matching:  /search?firstname=Jane&lastname=Doe
 	r.GET("/search", func(c *gin.Context) {
-		firstname := c.Request.URL.Query().Get("latitude")
-		lastname := c.Request.URL.Quert().Get("longitude")
+		firstname := c.Request.URL.Query().Get("firstname")
+		lastname := c.Request.URL.Quert().Get("lastname")
 		message := "Hello " + firstname + lastname
 		c.String(http.StatusOK, message)
 	})