Skip to content

Commit 8029319

Browse files
committed
Fix board module additions
1 parent 4991829 commit 8029319

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

shared-bindings/busio/__init__.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@
6868
//| This example will initialize the the device, run
6969
//| :py:meth:`~busio.I2C.scan` and then :py:meth:`~busio.I2C.deinit` the
7070
//| hardware. The last step is optional because CircuitPython automatically
71-
//| resets hardware after a program finishes."""
71+
//| resets hardware after a program finishes.
7272
//|
7373
//| Note that drivers will typically handle communication if provided the bus
74-
//| instance (such as `busio.I2C(board.SCL, board.SDA)`), and that many of
74+
//| instance (such as ``busio.I2C(board.SCL, board.SDA)``), and that many of
7575
//| the methods listed here are lower level functionalities that are needed
7676
//| for working with custom drivers.
7777
//|
@@ -80,6 +80,7 @@
8080
//|
8181
//| Tutorial for UART:
8282
//| https://learn.adafruit.com/circuitpython-essentials/circuitpython-uart-serial
83+
//| """
8384
//|
8485

8586
STATIC const mp_rom_map_elem_t busio_module_globals_table[] = {

0 commit comments

Comments
 (0)