Skip to content

Commit 5261658

Browse files
committed
Merge pull request #141 from enaqx/patch-4
Fix comments typo in type definition
2 parents 1c5cdbd + 8cb2c25 commit 5261658

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/type/definition.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ export type GraphQLInterfaceTypeConfig = {
595595
fields: GraphQLFieldConfigMapThunk | GraphQLFieldConfigMap,
596596
/**
597597
* Optionally provide a custom type resolver function. If one is not provided,
598-
* the default implemenation will call `isTypeOf` on each implementing
598+
* the default implementation will call `isTypeOf` on each implementing
599599
* Object type.
600600
*/
601601
resolveType?: (value: any, info?: GraphQLResolveInfo) => ?GraphQLObjectType,
@@ -701,7 +701,7 @@ export type GraphQLUnionTypeConfig = {
701701
types: Array<GraphQLObjectType>,
702702
/**
703703
* Optionally provide a custom type resolver function. If one is not provided,
704-
* the default implemenation will call `isTypeOf` on each implementing
704+
* the default implementation will call `isTypeOf` on each implementing
705705
* Object type.
706706
*/
707707
resolveType?: (value: any, info?: GraphQLResolveInfo) => ?GraphQLObjectType;

0 commit comments

Comments
 (0)