Skip to content

Commit bb8ad7f

Browse files
committed
Fixed doc
1 parent 7c1afb0 commit bb8ad7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shared-bindings/is31fl3741/__init__.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
//| """Low-level is31fl3741 implementation
4040
//|
4141
//| The `is31fl3741_write` module contains a helper method to write out bytes in
42-
//| over the I2C bus.
42+
//| over the I2C bus."""
4343
//|
44-
//| def is31fl3741_write(i2c: busio.I2c, addr: int, mapping: Tuple[int, ...], buf: ReadableBuffer) -> None:
44+
//| def is31fl3741_write(i2c: busio.I2C, addr: int, mapping: Tuple[int, ...], buf: ReadableBuffer) -> None:
4545
//| """Write buf out on the given I2C bus.
4646
//|
4747
//| :param ~busio.I2C i2c: the I2C bus to output with
@@ -83,7 +83,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(is31fl3741_is31fl3741_write_obj, 0, is31fl3741_is31fl
8383
//| """Initialize the IS31FL3741 device.
8484
//|
8585
//| :param ~busio.I2C i2c: the I2C bus to output with
86-
//| :param ~int addr: the I2C address of the IS31FL3741 device
86+
//| :param ~int addr: the I2C address of the IS31FL3741 device"""
8787
//| ...
8888
STATIC mp_obj_t is31fl3741_is31fl3741_init(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
8989
enum { ARG_i2c, ARG_addr };

0 commit comments

Comments
 (0)