summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorDaniel Pollard <daniel@learnweaver.com>2020-05-12 14:52:48 +1000
committerDaniel Pollard <daniel@learnweaver.com>2020-05-12 14:52:48 +1000
commit22bf99ccc438e499378af099a446d1c6d9b542ac (patch)
tree91f48c4e2d704da52b32c3e8991ddaaa3ffe019d /shared-bindings
parentee2cb703c83ff1c27675e98ce28f4cc49a33ebb9 (diff)
Fixed underline in documentation
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/countio/Counter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/countio/Counter.c b/shared-bindings/countio/Counter.c
index 1777acc8a..d9d97f0ea 100644
--- a/shared-bindings/countio/Counter.c
+++ b/shared-bindings/countio/Counter.c
@@ -12,13 +12,13 @@
//| .. currentmodule:: countio
//|
//| :class:`Counter` -- Track the count of falling edge transistions (pulses) on a given pin
-//| ====================================================================================
+//| ========================================================================================
//|
//| Counter will keep track of the number of falling edge transistions (pulses) on a given pin
//|
//| .. class:: Counter(pin_a)
//|
-//| Create an Counter object associated with the given pin. It tracks the number of
+//| Create a Counter object associated with the given pin. It tracks the number of
//| falling pulses relative when the object is constructed.
//|
//| :param ~microcontroller.Pin pin_a: Pin to read pulses from.