Skip to content

Commit

Permalink
Learned to spell
Browse files Browse the repository at this point in the history
  • Loading branch information
GraysonBellamy committed Jun 8, 2024
1 parent a7c10db commit 3c556fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/anyserial/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: MIT

__version__ = "0.0.8"
__version__ = "0.1.0"
2 changes: 1 addition & 1 deletion src/anyserial/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async def discard_output(self) -> None:
async def send_break(self, duration: float = 0.25) -> None:
pass

async def recieve_some(self, max_bytes: int) -> bytes:
async def receive_some(self, max_bytes: int) -> bytes:
with self._recv_resource_guard:
return await self._recv(max_bytes)

Expand Down

0 comments on commit 3c556fd

Please sign in to comment.