Skip to content

Commit 8958c1e

Browse files
Minor documentation fixes in displayio
1 parent bf58afd commit 8958c1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

shared-bindings/displayio/FourWire.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
//| The SPI bus and pins are then in use by the display until `displayio.release_displays()` is
4949
//| called even after a reload. (It does this so CircuitPython can use the display after your code
5050
//| is done.) So, the first time you initialize a display bus in code.py you should call
51-
//| :py:func`displayio.release_displays` first, otherwise it will error after the first code.py run.
51+
//| :py:func:`displayio.release_displays` first, otherwise it will error after the first code.py run.
5252
//|
5353
//| :param busio.SPI spi_bus: The SPI bus that make up the clock and data lines
5454
//| :param microcontroller.Pin command: Data or command pin

shared-bindings/displayio/I2CDisplay.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
//| The I2C bus and pins are then in use by the display until `displayio.release_displays()` is
4949
//| called even after a reload. (It does this so CircuitPython can use the display after your code
5050
//| is done.) So, the first time you initialize a display bus in code.py you should call
51-
//| :py:func`displayio.release_displays` first, otherwise it will error after the first code.py run.
51+
//| :py:func:`displayio.release_displays` first, otherwise it will error after the first code.py run.
5252
//|
5353
//| :param busio.I2C i2c_bus: The I2C bus that make up the clock and data lines
5454
//| :param int device_address: The I2C address of the device

shared-bindings/displayio/ParallelBus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
//| The parallel bus and pins are then in use by the display until `displayio.release_displays()`
5050
//| is called even after a reload. (It does this so CircuitPython can use the display after your
5151
//| code is done.) So, the first time you initialize a display bus in code.py you should call
52-
//| :py:func`displayio.release_displays` first, otherwise it will error after the first code.py run.
52+
//| :py:func:`displayio.release_displays` first, otherwise it will error after the first code.py run.
5353
//|
5454
//| :param microcontroller.Pin data0: The first data pin. The rest are implied
5555
//| :param microcontroller.Pin command: Data or command pin

0 commit comments

Comments
 (0)