diff --git a/docs/source/ssplit.md b/docs/source/ssplit.md index 2aa5a6b..6fafc3b 100644 --- a/docs/source/ssplit.md +++ b/docs/source/ssplit.md @@ -15,7 +15,7 @@ sentences = p.ssplit(doc_text) print(sentences) ``` -The output of the sentence segmentation module is a native Python dictionary with a list of the split sentences. For each sentence, we can access its span which is handy for retrieving the sentnece's location in the original document. The output would look like this: +The output of the sentence segmentation module is a native Python dictionary with a list of the split sentences. For each sentence, we can access its span which is handy for retrieving the sentence's location in the original document. The output would look like this: ```python { 'text': 'Hello! This is Trankit.', @@ -32,4 +32,4 @@ The output of the sentence segmentation module is a native Python dictionary wit } ] } -``` \ No newline at end of file +```