Skip to content

Commit

Permalink
Fix formatting, mostly leftovers from Prettier conversion (graphql#1491)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Aug 29, 2018
1 parent 0c45ddf commit 74d1e94
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 130 deletions.
10 changes: 4 additions & 6 deletions src/type/introspection.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,13 +416,12 @@ export const __TypeKind = new GraphQLEnumType({
UNION: {
value: TypeKind.UNION,
description:
'Indicates this type is a union. ' +
'`possibleTypes` is a valid field.',
'Indicates this type is a union. `possibleTypes` is a valid field.',
},
ENUM: {
value: TypeKind.ENUM,
description:
'Indicates this type is an enum. ' + '`enumValues` is a valid field.',
'Indicates this type is an enum. `enumValues` is a valid field.',
},
INPUT_OBJECT: {
value: TypeKind.INPUT_OBJECT,
Expand All @@ -432,13 +431,12 @@ export const __TypeKind = new GraphQLEnumType({
},
LIST: {
value: TypeKind.LIST,
description:
'Indicates this type is a list. ' + '`ofType` is a valid field.',
description: 'Indicates this type is a list. `ofType` is a valid field.',
},
NON_NULL: {
value: TypeKind.NON_NULL,
description:
'Indicates this type is a non-null. ' + '`ofType` is a valid field.',
'Indicates this type is a non-null. `ofType` is a valid field.',
},
},
});
Expand Down
Loading

0 comments on commit 74d1e94

Please sign in to comment.