fix doc typos

This commit is contained in:
Dan Halbert 2021-06-21 09:04:26 -04:00
parent ed41acd879
commit a718d33157
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
//| clock: microcontroller.Pin,
//| vsync: Optional[microcontroller.Pin],
//| href: Optional[microcontroller.Pin],
//| ):
//| ) -> None:
//| """Create a parallel image capture object
//|
//| :param List[microcontroller.Pin] data_pins: The data pins.

View File

@ -55,7 +55,7 @@ STATIC mp_obj_t keypad_eventqueue_next(mp_obj_t self_in) {
}
MP_DEFINE_CONST_FUN_OBJ_1(keypad_eventqueue_next_obj, keypad_eventqueue_next);
//| def store_next(self, Event: event) -> bool:
//| def store_next(self, event: Event) -> bool:
//| """Store the next key transition event in the supplied event, if available,
//| and return ``True``.
//| If there are no queued events, do not touch ``event`` and return ``False``.