Skip to content

Commit a718d33

Browse files
committed
fix doc typos
1 parent ed41acd commit a718d33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared-bindings/imagecapture/ParallelImageCapture.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
//| clock: microcontroller.Pin,
4444
//| vsync: Optional[microcontroller.Pin],
4545
//| href: Optional[microcontroller.Pin],
46-
//| ):
46+
//| ) -> None:
4747
//| """Create a parallel image capture object
4848
//|
4949
//| :param List[microcontroller.Pin] data_pins: The data pins.

shared-bindings/keypad/EventQueue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ STATIC mp_obj_t keypad_eventqueue_next(mp_obj_t self_in) {
5555
}
5656
MP_DEFINE_CONST_FUN_OBJ_1(keypad_eventqueue_next_obj, keypad_eventqueue_next);
5757

58-
//| def store_next(self, Event: event) -> bool:
58+
//| def store_next(self, event: Event) -> bool:
5959
//| """Store the next key transition event in the supplied event, if available,
6060
//| and return ``True``.
6161
//| If there are no queued events, do not touch ``event`` and return ``False``.

0 commit comments

Comments
 (0)