Skip to content

Commit 74d1e94

Browse files
Fix formatting, mostly leftovers from Prettier conversion (#1491)
1 parent 0c45ddf commit 74d1e94

File tree

5 files changed

+111
-130
lines changed

5 files changed

+111
-130
lines changed

src/type/introspection.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -416,13 +416,12 @@ export const __TypeKind = new GraphQLEnumType({
416416
UNION: {
417417
value: TypeKind.UNION,
418418
description:
419-
'Indicates this type is a union. ' +
420-
'`possibleTypes` is a valid field.',
419+
'Indicates this type is a union. `possibleTypes` is a valid field.',
421420
},
422421
ENUM: {
423422
value: TypeKind.ENUM,
424423
description:
425-
'Indicates this type is an enum. ' + '`enumValues` is a valid field.',
424+
'Indicates this type is an enum. `enumValues` is a valid field.',
426425
},
427426
INPUT_OBJECT: {
428427
value: TypeKind.INPUT_OBJECT,
@@ -432,13 +431,12 @@ export const __TypeKind = new GraphQLEnumType({
432431
},
433432
LIST: {
434433
value: TypeKind.LIST,
435-
description:
436-
'Indicates this type is a list. ' + '`ofType` is a valid field.',
434+
description: 'Indicates this type is a list. `ofType` is a valid field.',
437435
},
438436
NON_NULL: {
439437
value: TypeKind.NON_NULL,
440438
description:
441-
'Indicates this type is a non-null. ' + '`ofType` is a valid field.',
439+
'Indicates this type is a non-null. `ofType` is a valid field.',
442440
},
443441
},
444442
});

0 commit comments

Comments
 (0)