Skip to content

Commit 3fbd642

Browse files
committed
Removed ' character from introspection messages
1 parent affb84f commit 3fbd642

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/graphql/introspection/Introspection.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public enum TypeKind {
199199
public static final GraphQLEnumType __TypeKind = GraphQLEnumType.newEnum()
200200
.name("__TypeKind")
201201
.description("An enum describing what kind of type a given __Type is")
202-
.value("SCALAR", TypeKind.SCALAR, "Indicates this type is a scalar. 'specifiedByURL' is a valid field")
202+
.value("SCALAR", TypeKind.SCALAR, "Indicates this type is a scalar. `specifiedByURL` is a valid field")
203203
.value("OBJECT", TypeKind.OBJECT, "Indicates this type is an object. `fields` and `interfaces` are valid fields.")
204204
.value("INTERFACE", TypeKind.INTERFACE, "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.")
205205
.value("UNION", TypeKind.UNION, "Indicates this type is a union. `possibleTypes` is a valid field.")
@@ -678,11 +678,11 @@ public enum DirectiveLocation {
678678
.type(__Type))
679679
.field(newFieldDefinition()
680680
.name("directives")
681-
.description("'A list of all directives supported by this server.")
681+
.description("A list of all directives supported by this server.")
682682
.type(nonNull(list(nonNull(__Directive)))))
683683
.field(newFieldDefinition()
684684
.name("subscriptionType")
685-
.description("'If this server support subscription, the type that subscription operations will be rooted at.")
685+
.description("If this server support subscription, the type that subscription operations will be rooted at.")
686686
.type(__Type))
687687
.build();
688688

0 commit comments

Comments
 (0)