Skip to content

Commit 173dbf6

Browse files
dupskibbakerman
authored andcommitted
Add missing semis
1 parent 561909f commit 173dbf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/documentation/v11/schema.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,10 @@ To make a programmatically-generated schema executable, you can just instantiate
273273

274274
GraphQLSchema schema = GraphQLSchema.newSchema()
275275
.query(queryType)
276-
.build()
276+
.build();
277277

278278
// Make the schema executable
279-
GraphQL executor = GraphQL.newGraphQL(graphQLSchema).build()
279+
GraphQL executor = GraphQL.newGraphQL(graphQLSchema).build();
280280
ExecutionResult executionResult = executor.execute("{hello}");
281281
{{< / highlight >}}
282282

0 commit comments

Comments
 (0)