Skip to content

Commit 6918db1

Browse files
author
Daniel T. Plop
authored
Fix Typo in Docs (#1252)
The example of executing a query by passing a root value had a typo for the trailing parenthesis, namely it was '}' instead of ')'.
1 parent 188ce9a commit 6918db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/execution/execute.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Value used for :ref:`ResolverParamParent` in root queries and mutations can be o
8585
return {'id': root.id, 'firstName': root.name}
8686
8787
schema = Schema(Query)
88-
user_root = User(id=12, name='bob'}
88+
user_root = User(id=12, name='bob')
8989
result = schema.execute(
9090
'''
9191
query getUser {

0 commit comments

Comments
 (0)