Skip to content

Commit 7d6e0f7

Browse files
authored
[DOCS] Add missing comma in async example
1 parent 3ecef94 commit 7d6e0f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sphinx/async.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and are used in the same way as other APIs, just with an extra ``await``:
3636
async def main():
3737
resp = await es.search(
3838
index="documents",
39-
body={"query": {"match_all": {}}}
39+
body={"query": {"match_all": {}}},
4040
size=20,
4141
)
4242
print(resp)

0 commit comments

Comments
 (0)