From aa62d194236ea80fe0eb7d8b55c4d32c9b1983fe Mon Sep 17 00:00:00 2001 From: Nikolay Sheyko Date: Tue, 5 Dec 2023 22:04:07 +0400 Subject: [PATCH] Fix "seperate" typo (#251) --- docs/examples/entity_resolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/entity_resolution.md b/docs/examples/entity_resolution.md index 9a17924..360d1a7 100644 --- a/docs/examples/entity_resolution.md +++ b/docs/examples/entity_resolution.md @@ -42,7 +42,7 @@ class Entity(BaseModel): class DocumentExtraction(BaseModel): entities: List[Entity] = Field( ..., - description="Body of the answer, each fact should be its seperate object with a body and a list of sources", + description="Body of the answer, each fact should be a separate object with a body and a list of sources", ) ```