1
0
mirror of https://github.com/labstack/echo.git synced 2025-09-16 09:16:29 +02:00

Merge pull request #450 from zlokomatic/patch-1

Fixed typo
This commit is contained in:
Vishal Rana
2016-04-05 06:34:30 -07:00

View File

@@ -100,7 +100,7 @@ func getUser(c echo.Context) error {
func show(c echo.Context) error {
// Get team and member from the query string
team := c.QueryParam("team")
member := c.QueryParam("team")
member := c.QueryParam("member")
}
```