diff --git a/CHANGELOG.md b/CHANGELOG.md index c87b410d35c..b07cb80e8dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ All of the packages in the `apollo-server` repo are released with the same versi * Upgrade `subscription-transport-ws` to 0.9.9 for Graphiql * Remove tests and guaranteed support for Node 4 [PR #1024](https://github.com/apollographql/apollo-server/pull/1024) +* Cleanup docs [PR #1233](https://github.com/apollographql/apollo-server/pull/1233/files) ### v1.3.6 diff --git a/docs/source/features/scalars-enums.md b/docs/source/features/scalars-enums.md index 44e9bfbdde2..0a3935aa5d2 100644 --- a/docs/source/features/scalars-enums.md +++ b/docs/source/features/scalars-enums.md @@ -191,7 +191,7 @@ function oddValue(value) { return value % 2 === 1 ? value : null; } -const resovers = { +const resolvers = { Odd: new GraphQLScalarType({ name: 'Odd', description: 'Odd custom scalar type', @@ -236,7 +236,7 @@ type Query { } ``` -A query migh look like this: +A query might look like this: ```graphql query { @@ -306,7 +306,7 @@ const resolvers = { }; ``` -These don't change the public API at all and the resovers accept these value instead of the schema value, like so: +These don't change the public API at all and the resolvers accept these value instead of the schema value, like so: ```js const resolvers = {