From 2ab3d9e70b52456c21558cb19b294b7c6e082b6e Mon Sep 17 00:00:00 2001 From: LyubomirT Date: Sat, 2 Dec 2023 13:32:14 +0200 Subject: [PATCH] Humor me, I've put the module docstring into a wrong place. --- lesp/autocorrect.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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.