From 237ca47e868a93ee0a8b292ce47d9382a46d3977 Mon Sep 17 00:00:00 2001 From: Evans Hauser Date: Thu, 17 Jan 2019 10:47:25 -0800 Subject: [PATCH] client awareness: add missing comma (#302) --- docs/source/platform/client-awareness.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/platform/client-awareness.md b/docs/source/platform/client-awareness.md index 5973ba9..24e79df 100644 --- a/docs/source/platform/client-awareness.md +++ b/docs/source/platform/client-awareness.md @@ -33,7 +33,7 @@ import { HttpLink } from 'apollo-link-http'; const client = new ApolloClient({ link: new HttpLink({ uri: 'http://localhost:4000/graphql', - }) + }), name: 'insert your client name', version: 'insert your client version', }); @@ -86,7 +86,7 @@ const client = new ApolloClient({ headers: { 'client-name': 'Web', 'client-version': '1', - } + }, }), }); ``` @@ -115,7 +115,7 @@ const server = new ApolloServer({ clientVersion: headers && headers['client-version'] || 'Unversioned', }; }, - } + }, }); server.listen().then(({ url }) => {