Skip to content

Commit 4e08f09

Browse files
authored
Fix variable_values spelling in docs (#226)
1 parent c98d8e2 commit 4e08f09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/usage/file_upload.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ See `Streaming uploads on aiohttp docs`_.
9292

9393

9494
In order to stream local files, instead of providing opened files to the
95-
`variables_values` argument of `execute`, you need to provide an async generator
95+
`variable_values` argument of `execute`, you need to provide an async generator
9696
which will provide parts of the files.
9797

9898
You can use `aiofiles`_

gql/transport/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async def execute(
128128
:code:`execute` on a client or a session.
129129
130130
:param document: the parsed GraphQL request
131-
:param variables_values: An optional Dict of variable values
131+
:param variable_values: An optional Dict of variable values
132132
:param operation_name: An optional Operation name for the request
133133
:param extra_args: additional arguments to send to the aiohttp post method
134134
:param upload_files: Set to True if you want to put files in the variable values

0 commit comments

Comments
 (0)