Skip to content

Commit

Permalink
Humor me, I've put the module docstring into a wrong place.
Browse files Browse the repository at this point in the history
  • Loading branch information
LyubomirT committed Dec 2, 2023
1 parent bc00746 commit 2ab3d9e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lesp/autocorrect.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 2ab3d9e

Please sign in to comment.