From 3e56f79fba6ce82175c92c2d01b5ce4faba92c3a Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Sat, 30 Jan 2016 01:32:46 +0100 Subject: [PATCH 1/2] Coherent example code in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a111d29..7db3fb2d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ func main() { r := gin.Default() r.GET("/ping", func(c *gin.Context) { c.JSON(200, gin.H{ - "message": "hello world", + "message": "pong", }) }) r.Run() // listen and server on 0.0.0.0:8080 From 27f912f5b2c8ee7dd7655d479dee2fc4d41d32d7 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Sat, 30 Jan 2016 01:34:20 +0100 Subject: [PATCH 2/2] README little fixes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7db3fb2d..14bfe0e0 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![GoDoc](https://godoc.org/github.com/gin-gonic/gin?status.svg)](https://godoc.org/github.com/gin-gonic/gin) [![Join the chat at https://gitter.im/gin-gonic/gin](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gin-gonic/gin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -Gin is a web framework written in Golang. It features a martini-like API with much better performance, up to 40 times faster thanks to [httprouter](https://github.com/julienschmidt/httprouter). If you need performance and good productivity, you will love Gin. +Gin is a web framework written in Go (Golang). It features a martini-like API with much better performance, up to 40 times faster thanks to [httprouter](https://github.com/julienschmidt/httprouter). If you need performance and good productivity, you will love Gin.