Skip to content

Commit

Permalink
Issue ardatan#1127: Fix unexpected colon in two examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkundert committed May 14, 2019
1 parent 2210d81 commit 4861eb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/remote-schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Basic usage

```js
import fetch from 'node-fetch';
import { print } from 'graphql':
import { print } from 'graphql';

const fetcher = async ({ query: queryDocument, variables, operationName, context }) => {
const query = print(queryDocument);
Expand All @@ -188,7 +188,7 @@ Authentication headers from context

```js
import fetch from 'node-fetch';
import { print } from 'graphql':
import { print } from 'graphql';

const fetcher = async ({ query: queryDocument, variables, operationName, context }) => {
const query = print(queryDocument);
Expand Down

0 comments on commit 4861eb1

Please sign in to comment.