From f8d34ac8b6e378909fd3c5e64cbee4a33cfa444c Mon Sep 17 00:00:00 2001 From: Justin Beckwith Date: Mon, 25 May 2015 21:17:23 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ae003e..594b065 100644 --- a/README.md +++ b/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) })