Skip to content

Commit

Permalink
Fix Typo resovers -> resolvers (#1233)
Browse files Browse the repository at this point in the history
* Fix Typo resovers -> resolvers

* Fix typo migh -> might

* Fix typo resover -> resolver again
  • Loading branch information
Tejas Kumar authored and evans committed Jun 22, 2018
1 parent 6918508 commit 7dc280d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions docs/source/features/scalars-enums.md
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -236,7 +236,7 @@ type Query {
}
```

A query migh look like this:
A query might look like this:

```graphql
query {
Expand Down Expand Up @@ -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 = {
Expand Down

0 comments on commit 7dc280d

Please sign in to comment.