Skip to content

Commit

Permalink
Update _rle.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit authored Oct 28, 2018
1 parent a44b0ad commit 6d0c88b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions abydos/compression/_rle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 6d0c88b

Please sign in to comment.