From b793692e6cce65ba4154eb3e9e9977ab1260bc6f Mon Sep 17 00:00:00 2001 From: PhilipMay Date: Thu, 21 Dec 2023 20:51:57 +0100 Subject: [PATCH] Refactor text module doc --- mltb2/text.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/mltb2/text.py b/mltb2/text.py index 2138347..d721e87 100644 --- a/mltb2/text.py +++ b/mltb2/text.py @@ -2,7 +2,14 @@ # This software is distributed under the terms of the MIT license # which is available at https://opensource.org/licenses/MIT -"""Text specific module.""" +"""This module offers text specific tools. + +It offers the following functionality: + +- detect or clean invisible characters +- detect or replace special whitespaces +- remove duplicate whitespaces +""" import re from typing import Dict, Final, Pattern, Tuple