From b4bf44d441d4a48c485bad499cd6e8c0e276a9da Mon Sep 17 00:00:00 2001 From: Nan Wang Date: Mon, 11 May 2020 15:50:27 +0800 Subject: [PATCH] docs(executors): fix a typo --- jina/executors/crafters/nlp/split.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jina/executors/crafters/nlp/split.py b/jina/executors/crafters/nlp/split.py index 05bd0e40fbbfb..f4387bf172bdf 100644 --- a/jina/executors/crafters/nlp/split.py +++ b/jina/executors/crafters/nlp/split.py @@ -22,7 +22,7 @@ def __init__(self, """ :param min_sent_len: the minimal number of characters (including white spaces) of the sentence, by default 1. - :param max_sent_len: the maximal length of characters (including white spaces) of the sentence, by default 1e5. + :param max_sent_len: the maximal number of characters (including white spaces) of the sentence, by default 1e5. :param punct_chars: the punctuation characters to split on. """ super().__init__(*args, **kwargs)