Skip to content

Commit b689d74

Browse files
committed
fix docstring
1 parent 7e18bed commit b689d74

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

shared-bindings/touchio/__init__.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//| see `this Learn guide page <https://learn.adafruit.com/circuitpython-essentials/circuitpython-cap-touch>`_.
3030
//|
3131
//| **Limitations**: `touchio` on RP2350 must have a pull-up resistor to 3.3V
32-
//| instead of ground and set the `pull=Pull.UP` parameter when constructing
32+
//| instead of ground and set the ``pull=Pull.UP`` parameter when constructing
3333
//| a `TouchIn` object, due to GPIO hardware limitations.
3434
//|
3535
//| Example::
@@ -41,7 +41,8 @@
4141
//| print(touch_pin.value)
4242
//|
4343
//| This example will initialize the the device, and print the
44-
//| :py:data:`~touchio.TouchIn.value`."""
44+
//| :py:data:`~touchio.TouchIn.value`.
45+
//| """
4546

4647
static const mp_rom_map_elem_t touchio_module_globals_table[] = {
4748
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_touchio) },

0 commit comments

Comments
 (0)