From 6d0c88bf5a617bf1f8adab9f57c93180980f015f Mon Sep 17 00:00:00 2001 From: Chris Little Date: Sat, 27 Oct 2018 23:29:28 -0700 Subject: [PATCH] Update _rle.py --- abydos/compression/_rle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abydos/compression/_rle.py b/abydos/compression/_rle.py index 52b21448b..a4fe9bdc2 100644 --- a/abydos/compression/_rle.py +++ b/abydos/compression/_rle.py @@ -44,7 +44,7 @@ def rle_encode(text, use_bwt=True): :param str text: a text string to encode :param bool use_bwt: boolean indicating whether to perform BWT encoding before RLE encoding - :returns: word decoded by BWT + :returns: word decoded by RLE :rtype: str >>> rle_encode('align') @@ -86,7 +86,7 @@ def rle_decode(text, use_bwt=True): :param str text: a text string to decode :param bool use_bwt: boolean indicating whether to perform BWT decoding after RLE decoding - :returns: word decoded by BWT + :returns: word decoded by RLE :rtype: str >>> rle_decode('n\x00ilag')