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
This commit is contained in:
Ali Ismail
2025-09-12 12:49:54 -07:00
committed by GitHub
parent b1497bcea1
commit d5a4abf960

View File

@@ -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,
)