From 07a5494b34560fdfccfdd43f1430cbf064b860a6 Mon Sep 17 00:00:00 2001 From: muraoka Date: Sat, 4 Apr 2020 08:19:08 +0900 Subject: [PATCH] Fix typo in docs --- docs/content/recipes/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/recipes/authentication.md b/docs/content/recipes/authentication.md index a1c7d24cda3..6ae59e73b8d 100644 --- a/docs/content/recipes/authentication.md +++ b/docs/content/recipes/authentication.md @@ -5,7 +5,7 @@ linkTitle: Authentication menu: { main: { parent: 'recipes' } } --- -We have an app where users are authenticated using a cookie in the HTTP request, and we want to check this authentication status somewhere in our graph. Because GraphQL is transport agnostic we can't assume there will even be an HTTP request, so we need to expose these authention details to our graph using a middleware. +We have an app where users are authenticated using a cookie in the HTTP request, and we want to check this authentication status somewhere in our graph. Because GraphQL is transport agnostic we can't assume there will even be an HTTP request, so we need to expose these authentication details to our graph using a middleware. ```go