From 34f62522132092c76832e2378bb29732e0a4831b Mon Sep 17 00:00:00 2001 From: yim7 Date: Thu, 22 Sep 2022 15:38:15 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19749f4..d032021 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ group by path and count unique remote_ip. ``` python with SearchSession() as session: - # aggregate text must need use a keyword field instead + # aggregate text field need use a keyword field instead # request_timeout argument will be passed on to the opensearch-py result = ( session.select(UserLog) @@ -104,4 +104,4 @@ with SearchSession() as session: ) print(result) # result -> {'path': 1, 'path2': 2} -``` \ No newline at end of file +```