From e0463404d61ec87468d52e6d4d9b0c1bba7b2d2d Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 13 Feb 2025 12:02:42 -0600 Subject: [PATCH] Update shared-bindings/touchio/TouchIn.c Co-authored-by: Scott Shawcroft --- shared-bindings/touchio/TouchIn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-bindings/touchio/TouchIn.c b/shared-bindings/touchio/TouchIn.c index 9486d264b3..9539a43860 100644 --- a/shared-bindings/touchio/TouchIn.c +++ b/shared-bindings/touchio/TouchIn.c @@ -84,7 +84,7 @@ static void check_for_deinit(touchio_touchin_obj_t *self) { //| value: bool //| """Whether the touch pad is being touched or not. (read-only) //| -//| True when `raw_value` > `threshold`.:m""" +//| True when `raw_value` > `threshold`.""" static mp_obj_t touchio_touchin_obj_get_value(mp_obj_t self_in) { touchio_touchin_obj_t *self = MP_OBJ_TO_PTR(self_in); check_for_deinit(self);