diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-27 15:47:33 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-27 15:47:33 +0300 |
commit | 1b45670c694d5e98cae7f3cd3251bda766c58f4b (patch) | |
tree | 43176f9f1c0966fabfe9c62cfb46d7fb5f14aaf6 | |
parent | df4e1d1279aad106cafe83330046351201fb990f (diff) |
docs/ubinascii: Clean up grammar.
-rw-r--r-- | docs/library/ubinascii.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/library/ubinascii.rst b/docs/library/ubinascii.rst index e7967c511..0a9adb50d 100644 --- a/docs/library/ubinascii.rst +++ b/docs/library/ubinascii.rst @@ -12,7 +12,7 @@ Functions .. function:: hexlify(data, [sep]) - Convert binary data to hexadecimal representation. Return bytes string. + Convert binary data to hexadecimal representation. Returns bytes string. .. admonition:: Difference to CPython :class: attention @@ -22,13 +22,13 @@ Functions .. function:: unhexlify(data) - Convert hexadecimal data to binary representation. Return bytes string. + Convert hexadecimal data to binary representation. Returns bytes string. (i.e. inverse of hexlify) .. function:: a2b_base64(data) - Convert Base64-encoded data to binary representation. Return bytes string. + Convert Base64-encoded data to binary representation. Returns bytes string. .. function:: b2a_base64(data) - Encode binary data in Base64 format. Return string. + Encode binary data in Base64 format. Returns string. |