diff --git a/src/type/definition.js b/src/type/definition.js index ed0091fb39..95ad8d31aa 100644 --- a/src/type/definition.js +++ b/src/type/definition.js @@ -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, @@ -701,7 +701,7 @@ export type GraphQLUnionTypeConfig = { types: Array, /** * 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;