diff --git a/lesp/autocorrect.py b/lesp/autocorrect.py index e242a8e..aa91802 100644 --- a/lesp/autocorrect.py +++ b/lesp/autocorrect.py @@ -1,12 +1,11 @@ +""" +LESP helps you to detect and correct spelling mistakes in your text. It is a Python library that uses the Levenshtein distance algorithm to find similar words in a wordlist. Overall it works quickly and does not require a lot of resources. +""" from typing import List, Optional, Union import concurrent.futures import os import json -""" -LESP helps you to detect and correct spelling mistakes in your text. It is a Python library that uses the Levenshtein distance algorithm to find similar words in a wordlist. Overall it works quickly and does not require a lot of resources. -""" - class Proofreader: """ Proofreader - The main component of LESP. Contains most of the functions and methods of the library.