Skip to content

Commit fbc568f

Browse files
committed
DOC: Fix spelling in docstrings
1 parent d5e540d commit fbc568f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

databento/live/protocol.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def connection_made(self, transport: asyncio.BaseTransport) -> None:
175175
176176
See Also
177177
--------
178-
asycnio.BufferedProtocol.connection_made
178+
asyncio.BufferedProtocol.connection_made
179179
180180
"""
181181
logger.debug("established connection to gateway")
@@ -190,7 +190,7 @@ def connection_lost(self, exc: Exception | None) -> None:
190190
191191
See Also
192192
--------
193-
asycnio.BufferedProtocol.connection_lost
193+
asyncio.BufferedProtocol.connection_lost
194194
195195
"""
196196
super().connection_lost(exc)
@@ -216,7 +216,7 @@ def eof_received(self) -> bool | None:
216216
217217
See Also
218218
--------
219-
asycnio.BufferedProtocol.eof_received
219+
asyncio.BufferedProtocol.eof_received
220220
221221
"""
222222
logger.info("received EOF from remote")
@@ -228,7 +228,7 @@ def get_buffer(self, sizehint: int) -> bytearray:
228228
229229
See Also
230230
--------
231-
asycnio.BufferedProtocol.get_buffer
231+
asyncio.BufferedProtocol.get_buffer
232232
233233
"""
234234
if len(self.__buffer) < sizehint:
@@ -241,7 +241,7 @@ def buffer_updated(self, nbytes: int) -> None:
241241
242242
See Also
243243
--------
244-
asycnio.BufferedProtocol.buffer_updated
244+
asyncio.BufferedProtocol.buffer_updated
245245
246246
"""
247247
logger.debug("read %d bytes from remote gateway", nbytes)

0 commit comments

Comments
 (0)