We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0c3ab5 commit e09d572Copy full SHA for e09d572
circuitpython_typing/__init__.py
@@ -43,13 +43,13 @@ class ByteStream(Protocol):
43
"""
44
45
def read(self, count: Optional[int] = None, /) -> Optional[bytes]:
46
- """Read `count` bytes from the stream.
47
- If `count` bytes are not immediately available,
+ """Read ``count`` bytes from the stream.
+ If ``count`` bytes are not immediately available,
48
or if the parameter is not specified in the call,
49
the outcome is implementation-dependent.
50
51
...
52
53
def write(self, buf: ReadableBuffer, /) -> Optional[int]:
54
- """Write the bytes in `buf` to the stream."""
+ """Write the bytes in ``buf`` to the stream."""
55
0 commit comments