Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/type/definition.js
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ export type GraphQLInterfaceTypeConfig = {
fields: GraphQLFieldConfigMapThunk | GraphQLFieldConfigMap,
/**
* Optionally provide a custom type resolver function. If one is not provided,
* the default implemenation will call `isTypeOf` on each implementing
* the default implementation will call `isTypeOf` on each implementing
* Object type.
*/
resolveType?: (value: any, info?: GraphQLResolveInfo) => ?GraphQLObjectType,
Expand Down Expand Up @@ -701,7 +701,7 @@ export type GraphQLUnionTypeConfig = {
types: Array<GraphQLObjectType>,
/**
* Optionally provide a custom type resolver function. If one is not provided,
* the default implemenation will call `isTypeOf` on each implementing
* the default implementation will call `isTypeOf` on each implementing
* Object type.
*/
resolveType?: (value: any, info?: GraphQLResolveInfo) => ?GraphQLObjectType;
Expand Down