1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-28 08:38:39 +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
commit 3fec523181

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")
}
```