We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a44b0ad commit 6d0c88bCopy full SHA for 6d0c88b
abydos/compression/_rle.py
@@ -44,7 +44,7 @@ def rle_encode(text, use_bwt=True):
44
:param str text: a text string to encode
45
:param bool use_bwt: boolean indicating whether to perform BWT encoding
46
before RLE encoding
47
- :returns: word decoded by BWT
+ :returns: word decoded by RLE
48
:rtype: str
49
50
>>> rle_encode('align')
@@ -86,7 +86,7 @@ def rle_decode(text, use_bwt=True):
86
:param str text: a text string to decode
87
:param bool use_bwt: boolean indicating whether to perform BWT decoding
88
after RLE decoding
89
90
91
92
>>> rle_decode('n\x00ilag')
0 commit comments