From 04f765b8386865ad78bf49a92885d7c7f278c7d7 Mon Sep 17 00:00:00 2001 From: BioErrorLog <51422347+bioerrorlog@users.noreply.github.com> Date: Tue, 9 May 2023 11:38:40 +0900 Subject: [PATCH] Fix grammar in Text Splitters docs (#4373) # Fix grammar in Text Splitters docs Just a small fix of grammar in the documentation: "That means there two different axes" -> "That means there are two different axes" --- docs/modules/indexes/text_splitters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/indexes/text_splitters.rst b/docs/modules/indexes/text_splitters.rst index 5c256f6d..57faa37e 100644 --- a/docs/modules/indexes/text_splitters.rst +++ b/docs/modules/indexes/text_splitters.rst @@ -15,7 +15,7 @@ At a high level, text splitters work as following: 2. Start combining these small chunks into a larger chunk until you reach a certain size (as measured by some function). 3. Once you reach that size, make that chunk its own piece of text and then start creating a new chunk of text with some overlap (to keep context between chunks). -That means there two different axes along which you can customize your text splitter: +That means there are two different axes along which you can customize your text splitter: 1. How the text is split 2. How the chunk size is measured