From 174a2cbf2570a0bb48324cfd9e355237d2eca12d Mon Sep 17 00:00:00 2001 From: Danny Staple Date: Wed, 22 Dec 2021 17:03:58 +0000 Subject: [PATCH] Fix RST formatting for readthedocs And also a typo/grammar thing. --- ports/raspberrypi/bindings/rp2pio/StateMachine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/raspberrypi/bindings/rp2pio/StateMachine.c b/ports/raspberrypi/bindings/rp2pio/StateMachine.c index 0815112c3d..86bafb26ca 100644 --- a/ports/raspberrypi/bindings/rp2pio/StateMachine.c +++ b/ports/raspberrypi/bindings/rp2pio/StateMachine.c @@ -400,7 +400,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(rp2pio_statemachine_write_obj, 2, rp2pio_statemachine //| def readinto(self, buffer: WriteableBuffer, *, start: int = 0, end: Optional[int] = None) -> None: //| """Read into ``buffer``. If the number of bytes to read is 0, nothing happens. The buffer -//| include any data added to the fifo even if it was added before this was called. +//| includes any data added to the fifo even if it was added before this was called. //| //| :param ~_typing.WriteableBuffer buffer: Read data into this buffer //| :param int start: Start of the slice of ``buffer`` to read into: ``buffer[start:end]``