Skip to content

Commit 6d0c88b

Browse files
authored
Update _rle.py
1 parent a44b0ad commit 6d0c88b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

abydos/compression/_rle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def rle_encode(text, use_bwt=True):
4444
:param str text: a text string to encode
4545
:param bool use_bwt: boolean indicating whether to perform BWT encoding
4646
before RLE encoding
47-
:returns: word decoded by BWT
47+
:returns: word decoded by RLE
4848
:rtype: str
4949
5050
>>> rle_encode('align')
@@ -86,7 +86,7 @@ def rle_decode(text, use_bwt=True):
8686
:param str text: a text string to decode
8787
:param bool use_bwt: boolean indicating whether to perform BWT decoding
8888
after RLE decoding
89-
:returns: word decoded by BWT
89+
:returns: word decoded by RLE
9090
:rtype: str
9191
9292
>>> rle_decode('n\x00ilag')

0 commit comments

Comments
 (0)