From 39f58fe286fe3f3344e3d62acdb333f8e9388b3a Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Wed, 5 Oct 2016 18:42:52 +0300 Subject: [PATCH] Fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d26ea408..b2b34f3c 100644 --- a/README.md +++ b/README.md @@ -118,10 +118,10 @@ func main(){ }) iris.Get("/myjson", func(ctx *iris.Context){ - ctx.JSON(iris.Map{ + ctx.JSON(iris.StatusOK, iris.Map{ "Name": "Iris", "Released": "13 March 2016", - "Stars": 5250, + "Stars": 5281, }) })