summaryrefslogtreecommitdiff
path: root/shared-bindings/digitalio/Pull.c
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-03 16:03:19 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-03 16:03:19 -0400
commitbce77adecdbfd36006dbc97a50b67d05720c8135 (patch)
tree31d1e1e80a04ddcd6c6261df9eb780d2ade650f8 /shared-bindings/digitalio/Pull.c
parent9911b64fa13442f552a9968cdf40d926b98de6f8 (diff)
Added type hints previously missed
Diffstat (limited to 'shared-bindings/digitalio/Pull.c')
-rw-r--r--shared-bindings/digitalio/Pull.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/digitalio/Pull.c b/shared-bindings/digitalio/Pull.c
index 9656811c8..87e2a8f1e 100644
--- a/shared-bindings/digitalio/Pull.c
+++ b/shared-bindings/digitalio/Pull.c
@@ -34,11 +34,11 @@
//| digital values in."""
//| ...
//|
-//| UP: Any = ...
+//| UP: Pull = ...
//| """When the input line isn't being driven the pull up can pull the state
//| of the line high so it reads as true."""
//|
-//| DOWN: Any = ...
+//| DOWN: Pull = ...
//| """When the input line isn't being driven the pull down can pull the
//| state of the line low so it reads as false."""
//|