Skip to content

Commit

Permalink
Fix typo'd variable in scalars.md scalar example.
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix authored Feb 27, 2019
1 parent 67d03a9 commit 44dedf0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/source/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ const resolverFunctions = {
MyCustomScalar: myCustomScalarType
};

const jsSchema = makeExecutableSchema({ typeDefs: schemaString, resolvers: resolveFunctions });
const jsSchema = makeExecutableSchema({
typeDefs: schemaString,
resolvers: resolverFunctions,
});
```

<h2 id="examples">Custom scalar examples</h2>
Expand Down

0 comments on commit 44dedf0

Please sign in to comment.