fix spelling

This commit is contained in:
hathach
2023-03-17 17:27:34 +07:00
parent f14b4ba30a
commit 25d802532c
23 changed files with 33 additions and 29 deletions

View File

@@ -147,7 +147,7 @@ class XMODEM(object):
>>> modem = XMODEM(getc, putc)
:param getc: Function to retreive bytes from a stream
:param getc: Function to retrieve bytes from a stream
:type getc: callable
:param putc: Function to transmit bytes to a stream
:type putc: callable
@@ -215,7 +215,7 @@ class XMODEM(object):
>>> print modem.send(stream)
True
Returns ``True`` upon succesful transmission or ``False`` in case of
Returns ``True`` upon successful transmission or ``False`` in case of
failure.
:param stream: The stream object to send data from.