From 8c30fa0b340cb810ffe41c47d055d84a402bbec2 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Thu, 18 Mar 2021 17:07:01 -0500 Subject: [PATCH] [7.x] [DOCS] Add missing comma in async example --- docs/sphinx/async.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/async.rst b/docs/sphinx/async.rst index a8853038..08ddfa33 100644 --- a/docs/sphinx/async.rst +++ b/docs/sphinx/async.rst @@ -36,7 +36,7 @@ and are used in the same way as other APIs, just with an extra ``await``: async def main(): resp = await es.search( index="documents", - body={"query": {"match_all": {}}} + body={"query": {"match_all": {}}}, size=20, ) print(resp)