From e446b60dc28e216ac5231978d9edaadab63ba2d9 Mon Sep 17 00:00:00 2001 From: Matthew Whitaker Date: Tue, 22 Jan 2019 22:45:59 -0700 Subject: [PATCH] Fix typo in index route --- routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes.go b/routes.go index 12a34ad..41e0ba8 100644 --- a/routes.go +++ b/routes.go @@ -13,7 +13,7 @@ import ( func routeIndex(c echo.Context) error { return c.JSON(200, map[string]interface{}{ "success": true, - "message": "Weclome!", + "message": "Welcome!", }) }