From 71e0f4cd622bf648707eacb4b5f9508cefb6fbbf Mon Sep 17 00:00:00 2001 From: Ankur Singh Date: Thu, 24 Oct 2024 01:40:21 +0530 Subject: [PATCH] docs: Fix spelling mistake in concepts (#27589) `Fore` => `For` Documentation Correction: * [`docs/docs/concepts/async.mdx`](diffhunk://#diff-4959e81c20607c20c7a9c38db4405a687c5d94f24fc8220377701afeee7562b0L40-R40): Corrected a typo from "Fore" to "For" in the sentence directing users to the API reference. --- docs/docs/concepts/async.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/concepts/async.mdx b/docs/docs/concepts/async.mdx index 2a1d5acf578..bfe9f444860 100644 --- a/docs/docs/concepts/async.mdx +++ b/docs/docs/concepts/async.mdx @@ -37,7 +37,7 @@ await some_vectorstore.aadd_documents(documents) Runnables created using the [LangChain Expression Language (LCEL)](/docs/concepts/lcel) can also be run asynchronously as they implement the full [Runnable Interface](/docs/concepts/runnables). -Fore more information, please review the [API reference](https://python.langchain.com/api_reference/) for the specific component you are using. +For more information, please review the [API reference](https://python.langchain.com/api_reference/) for the specific component you are using. ## Delegation to sync methods