summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-09-26 09:46:26 -0500
committerJeff Epler <jepler@gmail.com>2020-09-28 17:22:00 -0500
commitf4fd5bbfc48c162647705aa68d2dded71a38c959 (patch)
treeb66d01554a928ad51cca8627b6670a52476bbaa9 /shared-bindings
parent8d45be1cd99c6fbfcb69877ab335e010810c54fd (diff)
canio: docs: fix how we refer to 'the listen method'
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/canio/Listener.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/canio/Listener.c b/shared-bindings/canio/Listener.c
index 9f3fe05c5..1aaa09217 100644
--- a/shared-bindings/canio/Listener.c
+++ b/shared-bindings/canio/Listener.c
@@ -34,8 +34,8 @@
//| class Listener:
//| """Listens for CAN message
//|
-//| canio.Listener is not constructed directly, but instead by calling the
-//| Listen method of a canio.CAN object."""
+//| canio.Listener is not constructed directly, but instead by calling
+//| `~canio.CAN.listen`."""
//|
//| def receive(self) -> Optional[Message]: