From d5a4abf960936176400c4b48590fc54e2bbe913e Mon Sep 17 00:00:00 2001 From: Ali Ismail <99437500+Ali-Ismail-1@users.noreply.github.com> Date: Fri, 12 Sep 2025 12:49:54 -0700 Subject: [PATCH] docs(core): remove duplicate 'the' in indexing/api.py (#32924) **Description:** Fixes a small typo in `_get_document_with_hash` inside `libs/core/langchain_core/indexing/api.py`. **Issue:** N/A (no related issue) **Dependencies:** None --- libs/core/langchain_core/indexing/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/langchain_core/indexing/api.py b/libs/core/langchain_core/indexing/api.py index fdf7273bad1..d9f9d5a2c81 100644 --- a/libs/core/langchain_core/indexing/api.py +++ b/libs/core/langchain_core/indexing/api.py @@ -56,7 +56,7 @@ def _warn_about_sha1() -> None: "that map to the same fingerprint. If this matters in your " "threat model, switch to a stronger algorithm such " "as 'blake2b', 'sha256', or 'sha512' by specifying " - " `key_encoder` parameter in the the `index` or `aindex` function. ", + " `key_encoder` parameter in the `index` or `aindex` function. ", category=UserWarning, stacklevel=2, )