From 802931987aca249a9fcebe4fcd0059e27525282c Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Wed, 4 May 2022 13:49:47 -0400 Subject: [PATCH] Fix board module additions --- shared-bindings/busio/__init__.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shared-bindings/busio/__init__.c b/shared-bindings/busio/__init__.c index 7ac9b58dd2..38bbfaf6ef 100644 --- a/shared-bindings/busio/__init__.c +++ b/shared-bindings/busio/__init__.c @@ -68,10 +68,10 @@ //| This example will initialize the the device, run //| :py:meth:`~busio.I2C.scan` and then :py:meth:`~busio.I2C.deinit` the //| hardware. The last step is optional because CircuitPython automatically -//| resets hardware after a program finishes.""" +//| resets hardware after a program finishes. //| //| Note that drivers will typically handle communication if provided the bus -//| instance (such as `busio.I2C(board.SCL, board.SDA)`), and that many of +//| instance (such as ``busio.I2C(board.SCL, board.SDA)``), and that many of //| the methods listed here are lower level functionalities that are needed //| for working with custom drivers. //| @@ -80,6 +80,7 @@ //| //| Tutorial for UART: //| https://learn.adafruit.com/circuitpython-essentials/circuitpython-uart-serial +//| """ //| STATIC const mp_rom_map_elem_t busio_module_globals_table[] = {