From b3a5ed557f506e36171aa44adab395865d4c7750 Mon Sep 17 00:00:00 2001 From: dblock Date: Thu, 12 Oct 2023 16:50:09 -0400 Subject: [PATCH] Fix: typo. Signed-off-by: dblock --- guides/connection_classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/connection_classes.md b/guides/connection_classes.md index 734a091a..da7357fb 100644 --- a/guides/connection_classes.md +++ b/guides/connection_classes.md @@ -7,7 +7,7 @@ # Connection Classes -The OpenSearch Python synchrnous client supports both the `Urllib3HttpConnection` connection class (default) from the [urllib3](https://pypi.org/project/urllib3/) library, and `RequestsHttpConnection` from the [requests](https://pypi.org/project/requests/) library. We recommend you use the default, unless your application is standardized on `requests`. +The OpenSearch Python synchronous client supports both the `Urllib3HttpConnection` connection class (default) from the [urllib3](https://pypi.org/project/urllib3/) library, and `RequestsHttpConnection` from the [requests](https://pypi.org/project/requests/) library. We recommend you use the default, unless your application is standardized on `requests`. The faster, asynchronous client, implements a class called `AsyncHttpConnection`, which uses [aiohttp](https://pypi.org/project/aiohttp/).