From 1123ba0da6c0cd0f5ab71d7e4c8aae7a5e8f40b4 Mon Sep 17 00:00:00 2001 From: Obed Osei Frimpong <3536601+oseifrimpong@users.noreply.github.com> Date: Thu, 26 Nov 2020 03:40:55 +0800 Subject: [PATCH] Update gin.md Changed this: `In your router file, define the handlers for the GraphQL and Playground endpoints in two different methods and tie then together in the Gin router: ` to: `In your router file, define the handlers for the GraphQL and Playground endpoints in two different methods and tie them together in the Gin router: ` --- docs/content/recipes/gin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/recipes/gin.md b/docs/content/recipes/gin.md index 155cc76e05..2aedd026f6 100644 --- a/docs/content/recipes/gin.md +++ b/docs/content/recipes/gin.md @@ -16,7 +16,7 @@ Install Gin: $ go get github.com/gin-gonic/gin ``` -In your router file, define the handlers for the GraphQL and Playground endpoints in two different methods and tie then together in the Gin router: +In your router file, define the handlers for the GraphQL and Playground endpoints in two different methods and tie them together in the Gin router: ```go import (